diff --git a/Plugin NPC/src/main/java/net/simon987/npcplugin/VaultDimension.java b/Plugin NPC/src/main/java/net/simon987/npcplugin/VaultDimension.java index 1d72083..d7a6865 100644 --- a/Plugin NPC/src/main/java/net/simon987/npcplugin/VaultDimension.java +++ b/Plugin NPC/src/main/java/net/simon987/npcplugin/VaultDimension.java @@ -152,7 +152,7 @@ public class VaultDimension { exitPortal.setObjectId(new ObjectId()); objectiveWorld.addObject(exitPortal); - LogManager.LOGGER.severe("Objective: " + objectiveWorld.getId()); +// LogManager.LOGGER.severe("Objective: " + objectiveWorld.getId()); } else { LogManager.LOGGER.severe("FIXME: Couldn't create exit portal for world " + homeWorld.getId()); diff --git a/Plugin NPC/src/main/java/net/simon987/npcplugin/VaultWorldGenerator.java b/Plugin NPC/src/main/java/net/simon987/npcplugin/VaultWorldGenerator.java index e9d5be4..12c055f 100644 --- a/Plugin NPC/src/main/java/net/simon987/npcplugin/VaultWorldGenerator.java +++ b/Plugin NPC/src/main/java/net/simon987/npcplugin/VaultWorldGenerator.java @@ -3,7 +3,6 @@ package net.simon987.npcplugin; import net.simon987.server.game.objects.Direction; import net.simon987.server.game.world.TileMap; import net.simon987.server.game.world.World; -import net.simon987.server.logging.LogManager; import java.awt.*; import java.util.ArrayList; @@ -14,7 +13,7 @@ public class VaultWorldGenerator { public World generateVaultWorld(int worldX, int worldY, ArrayList openings, String dimension) { - LogManager.LOGGER.info("Generating vault World"); +// LogManager.LOGGER.info("Generating vault World"); /* * Openings are always at the same spot (marked by '?') diff --git a/Plugin NPC/src/main/java/net/simon987/npcplugin/event/WorldCreationListener.java b/Plugin NPC/src/main/java/net/simon987/npcplugin/event/WorldCreationListener.java index f231d8a..2120ad0 100644 --- a/Plugin NPC/src/main/java/net/simon987/npcplugin/event/WorldCreationListener.java +++ b/Plugin NPC/src/main/java/net/simon987/npcplugin/event/WorldCreationListener.java @@ -9,7 +9,6 @@ import net.simon987.server.event.GameEventListener; import net.simon987.server.event.WorldGenerationEvent; import net.simon987.server.game.world.TileMap; import net.simon987.server.game.world.World; -import net.simon987.server.logging.LogManager; import org.bson.types.ObjectId; import java.awt.*; @@ -62,8 +61,8 @@ public class WorldCreationListener implements GameEventListener { world.addObject(factory); world.incUpdatable(); - LogManager.LOGGER.info("Spawned Factory at (" + world.getX() + ", " + world.getY() + - ") (" + x + ", " + y + ")"); +// LogManager.LOGGER.info("Spawned Factory at (" + world.getX() + ", " + world.getY() + +// ") (" + x + ", " + y + ")"); break outerLoopFactory; } } @@ -95,8 +94,8 @@ public class WorldCreationListener implements GameEventListener { NpcPlugin.getRadioTowers().add(radioTower); - LogManager.LOGGER.info("Spawned RadioTower at (" + world.getX() + ", " + world.getY() + - ") (" + p.x + ", " + p.y + ")"); +// LogManager.LOGGER.info("Spawned RadioTower at (" + world.getX() + ", " + world.getY() + +// ") (" + p.x + ", " + p.y + ")"); } } @@ -135,8 +134,8 @@ public class WorldCreationListener implements GameEventListener { vaultDoor.initialize(); - LogManager.LOGGER.info("Spawned Vault Door at (" + world.getX() + ", " + world.getY() + - ") (" + p.x + ", " + p.y + ")"); +// LogManager.LOGGER.info("Spawned Vault Door at (" + world.getX() + ", " + world.getY() + +// ") (" + p.x + ", " + p.y + ")"); } } } diff --git a/Plugin Plant/src/main/java/net/simon987/biomassplugin/WorldUtils.java b/Plugin Plant/src/main/java/net/simon987/biomassplugin/WorldUtils.java index fc7c097..8704d2d 100644 --- a/Plugin Plant/src/main/java/net/simon987/biomassplugin/WorldUtils.java +++ b/Plugin Plant/src/main/java/net/simon987/biomassplugin/WorldUtils.java @@ -2,7 +2,6 @@ package net.simon987.biomassplugin; import net.simon987.server.game.world.TileMap; import net.simon987.server.game.world.World; -import net.simon987.server.logging.LogManager; import org.bson.types.ObjectId; import java.awt.*; @@ -73,8 +72,8 @@ public class WorldUtils { } } - LogManager.LOGGER.info("Generated " + biomassBlobs.size() + " biomassBlobs for World (" + world.getX() + ',' + - world.getY() + ')'); +// LogManager.LOGGER.info("Generated " + biomassBlobs.size() + " biomassBlobs for World (" + world.getX() + ',' + +// world.getY() + ')'); return biomassBlobs; } diff --git a/Server/src/main/resources/config.properties b/Server/src/main/resources/config.properties index e6a33a2..1a38c77 100644 --- a/Server/src/main/resources/config.properties +++ b/Server/src/main/resources/config.properties @@ -73,7 +73,7 @@ min_electric_box_respawn_count=1 max_electric_box_respawn_count=4 vault_wg_min_layer_count=4 vault_wg_max_layer_count=6 -vault_wg_min_attached_world=0 +vault_wg_min_attached_world=1 vault_wg_max_attached_world=4 vault_wg_min_electric_box_count=2 vault_wg_max_electric_box_count=4