diff options
author | Dipesh Amin <yaypunkrock@gmail.com> | 2011-08-31 23:59:02 +0100 |
---|---|---|
committer | Dipesh Amin <yaypunkrock@gmail.com> | 2011-08-31 23:59:02 +0100 |
commit | 891cc670cbd8da86c865aca602a73a8ee8372bd1 (patch) | |
tree | ea5557c6643b7fbe5d04493a16ee33eb9dd004e4 | |
parent | c547651e966c30aa564e9a4e5c53c83f11168128 (diff) | |
download | manamarket-891cc670cbd8da86c865aca602a73a8ee8372bd1.tar.gz manamarket-891cc670cbd8da86c865aca602a73a8ee8372bd1.tar.bz2 manamarket-891cc670cbd8da86c865aca602a73a8ee8372bd1.tar.xz manamarket-891cc670cbd8da86c865aca602a73a8ee8372bd1.zip |
ooops level 20 wasn't being shown
-rwxr-xr-x | main.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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>")) |