From 0a309f0f60a9f24fc80edceaef440f8c5cda11f4 Mon Sep 17 00:00:00 2001 From: jomo Date: Fri, 4 Jul 2014 01:53:33 +0200 Subject: [PATCH] fix plugin title --- motd.py | 4 ++-- 1 file 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