summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDico200 <dico.karssiens@gmail.com>2015-11-30 02:19:07 +0100
committerDico200 <dico.karssiens@gmail.com>2015-11-30 02:19:07 +0100
commit2690da56663950a6391be53ee02cfc00a7bead99 (patch)
tree56f174b3df4648b1117508ac537e37909b4d9da8
parent1969584312c4dc2f9b22ce04f571e47a71ac880f (diff)
This should keep players from interacting with comparators where they cannot build
-rw-r--r--misc.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/misc.py b/misc.py
index 09abcb8..236f6dd 100644
--- a/misc.py
+++ b/misc.py
@@ -114,6 +114,17 @@ def rs_material_broken_by_flow(material):
length = len(parts)
return length > 1 and (parts[0] == "DIODE" or parts[1] in ("TORCH", "WIRE", "BUTTON", "HOOK") or (length == 3 and parts[1] == "COMPARATOR"))
+
+@hook.event("player.PlayerInteractEvent")
+def on_interact(event):
+ if (not event.isCancelled()
+ and str(event.getAction()) == "RIGHT_CLICK_BLOCK"
+ and str(event.getMaterial()) in ("REDSTONE_COMPARATOR_OFF", "REDSTONE_COMPARATOR_ON")
+ and not can_build(player, event.getClickedBlock())
+ ):
+ event.setCancelled(True)
+
+
sudo_blacklist = ["pyeval", "script_backup_begin", "script_backup_end", "script_backup_error", "script_backup_database_begin", "script_backup_database_dumps", "script_backup_database_end",
"script_backup_database_error", "script_backup_database_abort", "script_trim", "script_trim_result", "script_spigot_update", "script_disk_filled", "script_restart", "script_restart_abort",
"script_stop", "script_stop_abort", "script_shutdown", "stop", "esudo", "essentials:sudo"]