From 8165d5977b407d10b97e65a2e15bbcf97855f224 Mon Sep 17 00:00:00 2001 From: Dico200 Date: Wed, 25 May 2016 03:00:35 +0200 Subject: Small change to imbusy messages --- imbusy.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/imbusy.py b/imbusy.py index 153c00f..049d721 100644 --- a/imbusy.py +++ b/imbusy.py @@ -54,14 +54,14 @@ def on_busy_command(sender, cmd, label, args): return True busy_players.append(sender.getName()) plugin_header(recipient = sender, name = "I'M BUSY!") - broadcast(None, "%s is now SUPER busy! Don't even TRY bothering them, it will not work!" % sender.getName()) + 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 is freeee!" % sender.getName()) + msg(sender, "Master has sent /busy command, %s&f is freeee of bothering!" % sender.getDisplayName()) return True except ValueError: msg(sender, "You are not busy! You cannot be even less busy! Are you perhaps bored?") @@ -82,7 +82,7 @@ def on_busy_command(sender, cmd, label, args): return False elif len(args) == 2 and args[0] == "status": - plugin_header(recipient = sender, name = "I'M BUSY!") + 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 -- cgit v1.2.3