summaryrefslogtreecommitdiff
path: root/misc.py
diff options
context:
space:
mode:
authorDico200 <dico.karssiens@gmail.com>2015-04-29 03:27:52 +0200
committerDico200 <dico.karssiens@gmail.com>2015-04-29 03:27:52 +0200
commit1afaec2a0804f466a02f063a33086ef857e63432 (patch)
treede72b4137d79ee819cb93770a98db509c8c94605 /misc.py
parentc451b2247b9f5446ef060dab7e22f5f8223c1211 (diff)
Small misc cleanup
Diffstat (limited to 'misc.py')
-rw-r--r--misc.py21
1 files changed, 9 insertions, 12 deletions
diff --git a/misc.py b/misc.py
index d2054a8..554d095 100644
--- a/misc.py
+++ b/misc.py
@@ -184,9 +184,9 @@ def eval_argument_thread(event):
@simplecommand("pyeval",
- usage = "[code..]",
- description = "Runs python [code..] and returns the result",
- helpNoargs = True)
+ usage = "[code..]",
+ description = "Runs python [code..] and returns the result",
+ helpNoargs = True)
def on_pyeval_command(sender, command, label, args):
msg(sender, " ".join(args), False, "e")
thread.start_new_thread(eval_thread, (sender, " ".join(args)))
@@ -194,12 +194,12 @@ def on_pyeval_command(sender, command, label, args):
@simplecommand("tempadd",
- usage = "<user> <group> [duration]",
- description = "Temporarily adds <user> to <group> for \n[duration] minutes. Defaults to 1 week.",
- helpNoargs = True,
- helpSubcmd = True,
- amin = 2,
- amax = 3)
+ usage = "<user> <group> [duration]",
+ description = "Temporarily adds <user> to <group> for \n[duration] minutes. Defaults to 1 week.",
+ helpNoargs = True,
+ helpSubcmd = True,
+ amin = 2,
+ amax = 3)
def tempadd_command(sender, command, label, args):
if not sender.hasPermission("permissions.manage.membership." + args[1]):
return "&cYou do not have permission to manage that group!"
@@ -256,9 +256,6 @@ def rs_material_broken_by_flow(material):
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.AsyncPlayerChatEvent", "lowest")
def on_chat(event):