diff --git a/src/main/java/com/legacy/aether/entities/bosses/valkyrie_queen/EntityValkyrieQueen.java b/src/main/java/com/legacy/aether/entities/bosses/valkyrie_queen/EntityValkyrieQueen.java index 4ad79d6..f17715d 100644 --- a/src/main/java/com/legacy/aether/entities/bosses/valkyrie_queen/EntityValkyrieQueen.java +++ b/src/main/java/com/legacy/aether/entities/bosses/valkyrie_queen/EntityValkyrieQueen.java @@ -135,20 +135,10 @@ public class EntityValkyrieQueen extends EntityBossMob implements IAetherBoss { } private void unlockDoor() { - System.out.println(this.dungeonX - 1 + " " + this.dungeonY + " " + this.dungeonEntranceZ); - System.out.println(this.dungeonX - 1 + " " + this.dungeonY + " " + (this.dungeonEntranceZ + 1)); - System.out.println(this.dungeonX - 1 + " " + (this.dungeonY + 1) + " " + (this.dungeonEntranceZ + 1)); - System.out.println(this.dungeonX - 1 + " " + (this.dungeonY + 1) + " " + this.dungeonEntranceZ); - this.worldObj.setBlock(this.dungeonX - 1, this.dungeonY, this.dungeonEntranceZ, Blocks.air); this.worldObj.setBlock(this.dungeonX - 1, this.dungeonY, this.dungeonEntranceZ + 1, Blocks.air); this.worldObj.setBlock(this.dungeonX - 1, this.dungeonY + 1, this.dungeonEntranceZ + 1, Blocks.air); this.worldObj.setBlock(this.dungeonX - 1, this.dungeonY + 1, this.dungeonEntranceZ, Blocks.air); - - System.out.println(this.dungeonX - 1 + " " + this.dungeonY + " " + this.dungeonEntranceZ); - System.out.println(this.dungeonX - 1 + " " + this.dungeonY + " " + (this.dungeonEntranceZ + 1)); - System.out.println(this.dungeonX - 1 + " " + (this.dungeonY + 1) + " " + (this.dungeonEntranceZ + 1)); - System.out.println(this.dungeonX - 1 + " " + (this.dungeonY + 1) + " " + this.dungeonEntranceZ); } private void unlockTreasure() {