mirror of
https://github.com/PikaMug/Quests.git
synced 2025-01-24 01:02:00 +01:00
Clean temporary condition debug messages
This commit is contained in:
parent
de16f28c81
commit
ea0a2087e6
@ -85,7 +85,7 @@ public class Condition {
|
||||
if (ItemUtil.compareItems(player.getItemInHand(), is, true, true) == 0) {
|
||||
return true;
|
||||
} else {
|
||||
System.out.println("DEBUG: condition item does not match with code= "
|
||||
plugin.getLogger().info("DEBUG: Condition item does not match with code= "
|
||||
+ ItemUtil.compareItems(player.getItemInHand(), is, true, true));
|
||||
}
|
||||
}
|
||||
@ -94,7 +94,7 @@ public class Condition {
|
||||
if (player.getWorld().getName().equalsIgnoreCase(w)) {
|
||||
return true;
|
||||
} else {
|
||||
System.out.println("DEBUG: condition world does not match for= " + w);
|
||||
plugin.getLogger().info("DEBUG: Condition world does not match for= " + w);
|
||||
}
|
||||
}
|
||||
} else if (biomesWhileStayingWithin.isEmpty() == false) {
|
||||
@ -103,7 +103,7 @@ public class Condition {
|
||||
.name().equalsIgnoreCase(MiscUtil.getProperBiome(b).name())) {
|
||||
return true;
|
||||
} else {
|
||||
System.out.println("DEBUG: condition biome does not match for= " + MiscUtil.getProperBiome(b));
|
||||
plugin.getLogger().info("DEBUG: Condition biome does not match for= " + MiscUtil.getProperBiome(b));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user