summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDico200 <dico.karssiens@gmail.com>2016-05-25 03:02:01 +0200
committerDico200 <dico.karssiens@gmail.com>2016-05-25 03:02:01 +0200
commit29e7ce174b5f353d79773f1e73f047bb0007acbc (patch)
tree4d18008b20aae28091d8c446267b1ff85d5e8e33
parent8165d5977b407d10b97e65a2e15bbcf97855f224 (diff)
Imbusy command: Replace plugin_header calls with a single one at the start
-rw-r--r--imbusy.py11
1 files changed, 2 insertions, 9 deletions
diff --git a/imbusy.py b/imbusy.py
index 049d721..8e84cbd 100644
--- a/imbusy.py
+++ b/imbusy.py
@@ -32,13 +32,13 @@ def on_busy_command(sender, cmd, label, args):
msg(sender, "Sorry, Console cannot be busy")
return True
+ plugin_header(recipient = sender, name = "I'M BUSY!")
+
if not sender.hasPermission("utils.busy.allowed"):
- plugin_header(recipient = sender, name = "I'M BUSY!")
noperm(sender)
return True
if len(args) == 0:
- plugin_header(recipient = sender, name = "I'M BUSY!")
msg(sender, "This plugin allows being busy, and when turned on you will not receive any direct messages or tpa requests.")
msg(sender, "\nCommands:")
msg(sender, "/busy on: turns on busy mode")
@@ -49,16 +49,13 @@ def on_busy_command(sender, cmd, label, args):
elif len(args) == 1:
if args[0] == "on":
if sender.getName() in busy_players:
- plugin_header(recipient = sender, name = "I'M BUSY!")
msg(sender, "You cannot be even more focused than this without being a jedi!")
return True
busy_players.append(sender.getName())
- plugin_header(recipient = sender, name = "I'M BUSY!")
broadcast(None, "&c[&2Busy&c] &fNow busy: %s&f, don't even TRY bothering them!" % sender.getDisplayName())
return True
elif args[0] == "off":
- plugin_header(recipient = sender, name = "I'M BUSY!")
try:
busy_players.remove(sender.getName())
msg(sender, "Master has sent /busy command, %s&f is freeee of bothering!" % sender.getDisplayName())
@@ -68,7 +65,6 @@ def on_busy_command(sender, cmd, label, args):
return True
elif args[0] == "status":
- plugin_header(recipient = sender, name = "I'M BUSY!")
if sender.getName() in busy_players:
msg(sender, "You are super-duper busy and concentrated right now. Think, think, think!")
return True
@@ -77,12 +73,10 @@ def on_busy_command(sender, cmd, label, args):
return True
else:
- plugin_header(recipient = sender, name = "I'M BUSY!")
unclear(sender)
return False
elif len(args) == 2 and args[0] == "status":
- plugin_header(recipient = sender, name = "I'M BUSY!")
if args[1] in busy_players:
msg(sender, "Yes, %s is busy. Shhh..." % args[1])
return True
@@ -91,7 +85,6 @@ def on_busy_command(sender, cmd, label, args):
return True
else:
- plugin_header(recipient = sender, name = "I'M BUSY!")
unclear(sender)
return False