summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDico200 <dico.karssiens@gmail.com>2016-05-25 02:52:24 +0200
committerDico200 <dico.karssiens@gmail.com>2016-05-25 02:52:24 +0200
commitfca3cf250c10c47d849c2faef7a1a1f2d601d57b (patch)
treed0d604633bd1c755a76347d9b895e0b883c3964c
parent7fdaee155aabc69e658d5eaf4d6aa502ab90239c (diff)
Imbusy: Fixed typos and some *flaws* which I will disregard here @curs3d
-rw-r--r--imbusy.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/imbusy.py b/imbusy.py
index 37a964e..153c00f 100644
--- a/imbusy.py
+++ b/imbusy.py
@@ -17,8 +17,8 @@ from traceback import format_exc as trace
busy_players = []
-def unclear():
- msg(sender, "Umm, what? Sorry, directions unlclear, got head stuck in washing machine")
+def unclear(sender):
+ msg(sender, "Umm, what? Sorry, directions unclear, got head stuck in washing machine")
@hook.command("busy",
@@ -39,7 +39,7 @@ def on_busy_command(sender, cmd, label, args):
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 recieve any direct messages or tpa requests.")
+ 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")
msg(sender, "/busy off: turns off busy mode")
@@ -78,7 +78,7 @@ def on_busy_command(sender, cmd, label, args):
else:
plugin_header(recipient = sender, name = "I'M BUSY!")
- unclear()
+ unclear(sender)
return False
elif len(args) == 2 and args[0] == "status":
@@ -92,7 +92,7 @@ def on_busy_command(sender, cmd, label, args):
else:
plugin_header(recipient = sender, name = "I'M BUSY!")
- unclear()
+ unclear(sender)
return False