summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWushin <pasekei@gmail.com>2014-10-23 20:16:16 -0500
committerWushin <pasekei@gmail.com>2014-10-23 20:16:16 -0500
commitbeaf7f36bb2c609de5fcad1c06e37e26147c0cb0 (patch)
treeac5d5aecf2ee532e499d2f54ecf4afad556bc660
parentc3a245b4d4a4d6826b52f68d2e174b54c2be05ed (diff)
parentb156df099ee1319e4d25f26462c33c7877a29853 (diff)
downloadmanamarket-beaf7f36bb2c609de5fcad1c06e37e26147c0cb0.tar.gz
manamarket-beaf7f36bb2c609de5fcad1c06e37e26147c0cb0.tar.bz2
manamarket-beaf7f36bb2c609de5fcad1c06e37e26147c0cb0.tar.xz
manamarket-beaf7f36bb2c609de5fcad1c06e37e26147c0cb0.zip
Merge pull request #8 from Cassy1/communication-with-player
Adding feedback about source for requesting seller access
-rwxr-xr-xmain.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.py b/main.py
index 9c863a8..5592a52 100755
--- a/main.py
+++ b/main.py
@@ -125,7 +125,7 @@ def process_whisper(nick, msg, mapserv):
elif msg == "!info":
# Send information related to a player.
if user == -10:
- mapserv.sendall(whisper(nick, "Your current access level is 0."))
+ mapserv.sendall(whisper(nick, "Your current access level is 0. Request access in [@@https://forums.themanaworld.org/viewtopic.php?f=14&t=14010|ManaMarket's forum thread@@]"))
elif int(user.get('accesslevel')) > 0:
mapserv.sendall(whisper(nick, "Your current access level is " + user.get('accesslevel') + "."))
items_for_sale = False
@@ -424,7 +424,7 @@ def process_whisper(nick, msg, mapserv):
elif broken_string[0] == "!add":
# Allows a player with the correct permissions to add an item for sale - !add <amount> <price> <item name>
if user == -10:
- mapserv.sendall(whisper(nick, "You are unable to add items."))
+ mapserv.sendall(whisper(nick, "You are unable to add items. Request access in [@@https://forums.themanaworld.org/viewtopic.php?f=14&t=14010|ManaMarket's forum thread@@]"))
return
if len(broken_string) < 3: