Removed debug.

This commit is contained in:
Tastybento 2018-02-11 11:24:51 -08:00
parent c07b649488
commit c58fc0d07a
2 changed files with 0 additions and 2 deletions

View File

@ -634,7 +634,6 @@ public class IslandsManager {
if (DEBUG) {
plugin.getLogger().info("DEBUG: home loc = " + home + " teleporting");
}
//home.getChunk().load();
player.teleport(home);
User user = User.getInstance(player);
if (number == 1) {

View File

@ -57,7 +57,6 @@ public class NetherPortals implements Listener {
}
private boolean inWorlds(Location from) {
plugin.getLogger().info("In world = " + (from.getWorld().equals(world) || from.getWorld().equals(nether) || from.getWorld().equals(the_end)));
return (from.getWorld().equals(world) || from.getWorld().equals(nether) || from.getWorld().equals(the_end)) ? true : false;
}