Added nuggets + json files. F

Removed unnecessary lignite ores.
Fixed oreDict
This commit is contained in:
Robert Sosnitzka
2016-07-22 00:44:17 +02:00
parent 6a932e6e56
commit 374f1f1d24
42 changed files with 325 additions and 63 deletions

View File

@@ -13,17 +13,11 @@ public class FuelHandler implements IFuelHandler {
if (fuel.getItem().equals(lignite)) {
return 200 * 6;
}
if (fuel.getItem().equals(lignite2)) {
return 200 * 4;
}
if (fuel.getItem().equals(lignite3)) {
return 200 * 8;
}
if (fuel.getItem().equals(fuel_brick)) {
return 200 * 16;
return 200 * 50;
}
if (fuel.getItem().equals(glimmercoal)) {
return (random.nextInt(32) + 32) * 200;
return (random.nextInt(20) + 40) * 200;
}
return 0;
}