Imbusy: Fixed typos and some *flaws* which I will disregard here @curs3d

This commit is contained in:
Dico200
2016-05-25 02:52:24 +02:00
parent 7fdaee155a
commit fca3cf250c

View File

@@ -17,8 +17,8 @@ from traceback import format_exc as trace
busy_players = [] busy_players = []
def unclear(): def unclear(sender):
msg(sender, "Umm, what? Sorry, directions unlclear, got head stuck in washing machine") msg(sender, "Umm, what? Sorry, directions unclear, got head stuck in washing machine")
@hook.command("busy", @hook.command("busy",
@@ -39,7 +39,7 @@ def on_busy_command(sender, cmd, label, args):
if len(args) == 0: if len(args) == 0:
plugin_header(recipient = sender, name = "I'M BUSY!") 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, "\nCommands:")
msg(sender, "/busy on: turns on busy mode") msg(sender, "/busy on: turns on busy mode")
msg(sender, "/busy off: turns off busy mode") msg(sender, "/busy off: turns off busy mode")
@@ -78,7 +78,7 @@ def on_busy_command(sender, cmd, label, args):
else: else:
plugin_header(recipient = sender, name = "I'M BUSY!") plugin_header(recipient = sender, name = "I'M BUSY!")
unclear() unclear(sender)
return False return False
elif len(args) == 2 and args[0] == "status": elif len(args) == 2 and args[0] == "status":
@@ -92,7 +92,7 @@ def on_busy_command(sender, cmd, label, args):
else: else:
plugin_header(recipient = sender, name = "I'M BUSY!") plugin_header(recipient = sender, name = "I'M BUSY!")
unclear() unclear(sender)
return False return False