mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-08 03:49:32 +01:00
Apply crop trampling setting to all entities.
This commit is contained in:
parent
dfb6114584
commit
327ae2b807
@ -120,7 +120,8 @@ public void onEntityInteract(EntityInteractEvent event) {
|
|||||||
WorldConfiguration wcfg = cfg.get(entity.getWorld());
|
WorldConfiguration wcfg = cfg.get(entity.getWorld());
|
||||||
|
|
||||||
if (block.getTypeId() == BlockID.SOIL) {
|
if (block.getTypeId() == BlockID.SOIL) {
|
||||||
if (entity instanceof Creature && wcfg.disableCreatureCropTrampling) {
|
if (/* entity instanceof Creature && // catch for any entity (not thrown for players) */
|
||||||
|
wcfg.disableCreatureCropTrampling) {
|
||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user