Browse Source

remove debug print

mastercake10 1 month ago
parent
commit
de69de96c9
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/main/java/xyz/spaceio/hooks/HookFabledSkyblock.java

+ 0 - 1
src/main/java/xyz/spaceio/hooks/HookFabledSkyblock.java

@@ -63,7 +63,6 @@ public class HookFabledSkyblock implements SkyblockAPIHook{
 	@Override
 	public void sendBlockAcknowledge(Block block) {
 		if(block != null && api.getIslandManager().getIslandAtLocation(block.getLocation()) != null) {
-			System.out.println(block.getType());
 			api.getLevellingManager().updateLevel(api.getIslandManager().getIslandAtLocation(block.getLocation()), block.getLocation());
 		}
 	}