summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDipesh Amin <yaypunkrock@gmail.com>2011-08-31 23:59:02 +0100
committerDipesh Amin <yaypunkrock@gmail.com>2011-08-31 23:59:02 +0100
commit891cc670cbd8da86c865aca602a73a8ee8372bd1 (patch)
treeea5557c6643b7fbe5d04493a16ee33eb9dd004e4
parentc547651e966c30aa564e9a4e5c53c83f11168128 (diff)
downloadmanamarket-891cc670cbd8da86c865aca602a73a8ee8372bd1.tar.gz
manamarket-891cc670cbd8da86c865aca602a73a8ee8372bd1.tar.bz2
manamarket-891cc670cbd8da86c865aca602a73a8ee8372bd1.tar.xz
manamarket-891cc670cbd8da86c865aca602a73a8ee8372bd1.zip
ooops level 20 wasn't being shown
-rwxr-xr-xmain.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.py b/main.py
index 602afeb..2bafa40 100755
--- a/main.py
+++ b/main.py
@@ -140,7 +140,7 @@ def process_whisper(nick, msg, mapserv):
mapserv.sendall(whisper(nick, "Use !add to tell me which items I should trade for you:"))
mapserv.sendall(whisper(nick, "For example !add 10 1000 Iron Ore would tell me to sell 10 [@@640|Iron Ore@@] for a price of 1000 gp"))
mapserv.sendall(whisper(nick, "Later you can whisper me !money to get back your money. In the example given, I'd give you 10*1000 = 10000gp"))
- elif int(user.get('accesslevel')) == 20:
+ if int(user.get('accesslevel')) == 20:
mapserv.sendall(whisper(nick, "You're my master! How should I serve you?"))
mapserv.sendall(whisper(nick, "You also have access to the following commands: !listusers, !setslots <slots> <name>, !setaccess <access level > <name>, !adduser <access level> <slot> <name>"))