summaryrefslogtreecommitdiff
path: root/plugins/manaboy.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/manaboy.py')
-rwxr-xr-xplugins/manaboy.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/manaboy.py b/plugins/manaboy.py
index c01a8ab..f5c3d80 100755
--- a/plugins/manaboy.py
+++ b/plugins/manaboy.py
@@ -445,12 +445,16 @@ death_words = [
"Dammit!!! Why me???",
"Nirvana wait for me!",
"Well, at least I will have no more taxes to pay.",
+ "I need another drink...",
+ "I don't want to see!",
+ "See you on the other side!",
+ "Don't worry: I've pressed the up button first.",
]
@extends('smsg_being_remove')
def bot_dies(data):
if data.id == charserv.server.account:
- mapserv.cmsg_chat_message(random.choice(bye_answers))
+ mapserv.cmsg_chat_message(random.choice(death_words))
time.sleep(5)
mapserv.cmsg_player_respawn()