Fixed spelling

This commit is contained in:
Gig 2015-04-23 23:06:01 +01:00
parent e889b00b6f
commit b8170a9eb4
2 changed files with 3 additions and 3 deletions

View file

@ -25,7 +25,7 @@ public class ConfigTechReborn {
public static boolean PyriteOreTrue;
public static boolean CinnabarOreTrue;
public static boolean SphaleriteOreTrue;
public static boolean TungstonOreTrue;
public static boolean TungstenOreTrue;
public static boolean SheldoniteOreTrue;
public static boolean OlivineOreTrue;
public static boolean SodaliteOreTrue;
@ -139,7 +139,7 @@ public class ConfigTechReborn {
StatCollector.translateToLocal("config.techreborn.allow.sphaleriteOre"), true,
StatCollector.translateToLocal("config.techreborn.allow.sphaleriteOre.tooltip"))
.getBoolean(true);
TungstonOreTrue = config.get(CATEGORY_WORLD,
TungstenOreTrue = config.get(CATEGORY_WORLD,
StatCollector.translateToLocal("config.techreborn.allow.tungstonOre"), true,
StatCollector.translateToLocal("config.techreborn.allow.tungstonOre.tooltip"))
.getBoolean(true);

View file

@ -173,7 +173,7 @@ public class TROreGen implements IWorldGenerator {
void generateEndOres(Random random, int xChunk, int zChunk, World world) {
int xPos, yPos, zPos;
if (config.TungstonOreTrue) {
if (config.TungstenOreTrue) {
for (int i = 0; i <= 16; i++) {
xPos = xChunk + random.nextInt(16);
yPos = 60 + random.nextInt(60 - 20);