fix typos that were c/p over

This commit is contained in:
dordsor21 2020-07-12 18:50:04 +01:00
parent c045ef698c
commit 14b6f84816
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B
2 changed files with 2 additions and 2 deletions

View File

@ -661,7 +661,7 @@ public class BlockEventListener implements Listener {
if (plot != null
&& plot.getFlag(LiquidFlowFlag.class) == LiquidFlowFlag.FlowStatus.DISABLED && event
.getBlock().isLiquid()) {
plot.debug("Liquid could now flow because liquid-flow = disabled");
plot.debug("Liquid could not flow because liquid-flow = disabled");
event.setCancelled(true);
return;
}

View File

@ -200,7 +200,7 @@ public class EntityEventListener implements Listener {
if (plot == null || plot.getFlag(DisablePhysicsFlag.class)) {
event.setCancelled(true);
if (plot != null) {
plot.debug("Fallin block event was cancelled because disable-physics = true");
plot.debug("Falling block event was cancelled because disable-physics = true");
}
return;
}