summaryrefslogtreecommitdiff
path: root/motd.py
diff options
context:
space:
mode:
authorjomo <github@jomo.tv>2014-07-04 01:53:33 +0200
committerjomo <github@jomo.tv>2014-07-04 01:53:33 +0200
commit0a309f0f60a9f24fc80edceaef440f8c5cda11f4 (patch)
tree81bbaee46c9e00b7a9ff68d37f40ba1bebc0f3f7 /motd.py
parent4791f843560cf7e73438779261233f4046dd93e1 (diff)
fix plugin title
Diffstat (limited to 'motd.py')
-rw-r--r--motd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/motd.py b/motd.py
index 915fa63..6a3e44d 100644
--- a/motd.py
+++ b/motd.py
@@ -5,14 +5,14 @@ motd = server.getMotd()
@hook.command("getmotd")
def onGetMotdCommand(sender, args):
- plugHeader("MOTD")
+ plugHeader(sender "MOTD")
msg(sender, motd, usecolor=False)
@hook.command("setmotd")
def onSetMotdCommand(sender, args):
global motd
- plugHeader("MOTD")
+ plugHeader(sender, "MOTD")
if sender.hasPermission("utils.setmotd"):
if not checkargs(sender, args, 1, -1):
return True