Fixed spelling
This commit is contained in:
parent
e889b00b6f
commit
b8170a9eb4
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue