diff --git a/TwosideKeeper.jar b/TwosideKeeper.jar index 10d4836..fafdcdb 100644 Binary files a/TwosideKeeper.jar and b/TwosideKeeper.jar differ diff --git a/src/sig/plugin/TwosideKeeper/HelperStructures/Common/Habitation.java b/src/sig/plugin/TwosideKeeper/HelperStructures/Common/Habitation.java index c9faac4..c2cfc38 100644 --- a/src/sig/plugin/TwosideKeeper/HelperStructures/Common/Habitation.java +++ b/src/sig/plugin/TwosideKeeper/HelperStructures/Common/Habitation.java @@ -25,7 +25,7 @@ public class Habitation { public Habitation() { locationhashes = new HashMap(); startinglocs = new HashMap(); - } + } // Returns false if the new starting location is not allowed. public boolean addNewStartingLocation(LivingEntity l) { @@ -67,8 +67,10 @@ public class Habitation { TwosideKeeper.log("[Habitat]It's now clear~!",4); i--; } else { - locationhashes.put(hash, (int)(spawnamt*0.9)); - TwosideKeeper.log("[Habitat]It's now "+(int)(spawnamt*0.9)+"!",4); + if (Math.random()<=0.1) { + locationhashes.put(hash, (int)(spawnamt*0.9)); + TwosideKeeper.log("[Habitat]It's now "+(int)(spawnamt*0.9)+"!",4); + } } } }