From 641c635cdad2b93cebfaad94c70235a2bcd179f1 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Mon, 9 Jul 2018 18:28:20 +1000 Subject: % Changed the Villagers the spawn in Outback/Desert biomes to be exclusively Natives. % Tweaked debug tool to not remove GT ores and tiles. % Changed the hut the natives get, it's now more of an igloo shape. $ Fixed BoP Issue with Australia Generation. --- src/Java/gtPlusPlus/australia/world/AustraliaWorldGenerator.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Java/gtPlusPlus/australia/world') diff --git a/src/Java/gtPlusPlus/australia/world/AustraliaWorldGenerator.java b/src/Java/gtPlusPlus/australia/world/AustraliaWorldGenerator.java index 2bfc909558..93112bb30f 100644 --- a/src/Java/gtPlusPlus/australia/world/AustraliaWorldGenerator.java +++ b/src/Java/gtPlusPlus/australia/world/AustraliaWorldGenerator.java @@ -93,15 +93,15 @@ public class AustraliaWorldGenerator implements IWorldGenerator { } if (canGenerate) { - Logger.WORLD("Running World Generator on Australia."); + //Logger.WORLD("Running World Generator on Australia."); boolean a1, a2; a1 = generator.generate(world, random, x, z); a2 = nonInRange(world, x, z, generator.getRange()); - Logger.INFO("A1: "+a1+" | A2: "+a2); + //Logger.INFO("A1: "+a1+" | A2: "+a2); if (a1 && a2) { this.structuresList.add(new ChunkCoordIntPair(x, z)); gen = true; - Logger.INFO("Generated a structure"); + //Logger.INFO("Generated a structure"); break; } } -- cgit