From d3618e45a3651933b579a8e1c190a4d6fd9438ac Mon Sep 17 00:00:00 2001 From: bconlon Date: Mon, 20 Jul 2020 23:50:46 -0700 Subject: [PATCH] Once again removed print statements. --- .../bosses/valkyrie_queen/EntityValkyrieQueen.java | 10 ---------- 1 file changed, 10 deletions(-) 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() {