diff options
Diffstat (limited to 'plugins/manaboy.py')
-rwxr-xr-x[-rw-r--r--] | plugins/manaboy.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/plugins/manaboy.py b/plugins/manaboy.py index 0578e21..b145cdb 100644..100755 --- a/plugins/manaboy.py +++ b/plugins/manaboy.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- import subprocess import time import net.mapserv as mapserv @@ -55,7 +54,7 @@ def XECUTE(nick, is_whisper, command, args=""): if is_whisper: whisper(nick,(s.strip('\r\n\t'))) else: - mapserv.cmsg_chat_message(s.strip('\r\n\t')) + mapserv.cmsg_chat_message(nick + ": " + s.strip('\r\n\t')) # ====================== XCAL ============= @@ -409,8 +408,8 @@ whoami_answers = [ "Who are you?", "On the 8th day, God was bored and said 'There will be bots'. \ So here I am.", - "♪ I'm your hell, I'm your dream, I'm nothing in between ♪♪", - "♪♪ Aperture Science. We do what we must, because.. we can ♪", + " I'm your hell, I'm your dream, I'm nothing in between ", + " Aperture Science. We do what we must, because.. we can ", "I'm just a reincarnation of a copy.", ] @@ -454,7 +453,7 @@ dislike_answers = [ "Go away!!!", "I don't want to see!", "Your face makes onions cry.", - "You look like I need another drink…", + "You look like I need another drink...", "Mayas were right...", ] @@ -472,7 +471,7 @@ dislikebye_answers = [ "Go away!!!", "Don't come back!", "Whew...", - "I need another drink…", + "I need another drink...", "*picking my nose*" ] |