summaryrefslogtreecommitdiff
path: root/misc.py
diff options
context:
space:
mode:
authorDico200 <dico.karssiens@gmail.com>2015-04-08 22:34:44 +0200
committerDico200 <dico.karssiens@gmail.com>2015-04-08 22:34:44 +0200
commit34b59e61fead89c2defe35414db8b4a2e4e6f5ed (patch)
treee36f4a87a7f7a6eafaec68a8b4c5127b95d5fbe0 /misc.py
parentda756d69ccef7346d896a0b8cb2aa5c42b038c7b (diff)
Revert "Revert "Change to /modules... trying to make @command work.""
This reverts commit da756d69ccef7346d896a0b8cb2aa5c42b038c7b.
Diffstat (limited to 'misc.py')
-rw-r--r--misc.py17
1 files changed, 14 insertions, 3 deletions
diff --git a/misc.py b/misc.py
index 5bace4a..ea20030 100644
--- a/misc.py
+++ b/misc.py
@@ -6,6 +6,7 @@ import thread
import org.bukkit.inventory.ItemStack as ItemStack
import org.bukkit.Bukkit as Bukkit
import org.bukkit.event.player.PlayerChatEvent as PlayerChatEvent
+import basecommands
from basecommands import simplecommand
"""
@@ -86,6 +87,18 @@ def on_me_command(sender, command, label, args):
broadcast("utils.me", "&7- %s &7%s %s" % (sender.getDisplayName() if isinstance(sender, Player) else "&9CONSOLE", u"\u21E6", " ".join(args)))
return None
+"""
+@basecommands.command("damnyou", aliases = ["dam"])
+def damnyou_command():
+
+ @basecommands.subcommand("me")
+ def me(sender, command, label, args):
+ info("me ran")
+
+ @basecommands.maincommand
+ def main(sender, command, label, args):
+ info("main ran")
+"""
#@hook.command("gm")
#def on_gm_command(sender, args):
@@ -192,9 +205,7 @@ def on_modules_command(sender, command, label, args):
list all modules, unloaded modules in red
"""
plugin_header(sender, "Modules")
- for mod in shared["load_modules"]:
- color = "a" if mod in shared["modules"] else "c"
- msg(sender, "&" + color + mod)
+ msg(sender, ", ".join([(("&a" if mod in shared["modules"] else "&c") + mod) for mod in shared["load_modules"]]))
@hook.event("player.PlayerTeleportEvent")