summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDipesh Amin <yaypunkrock@gmail.com>2011-09-09 12:00:49 +0100
committerDipesh Amin <yaypunkrock@gmail.com>2011-09-09 12:00:49 +0100
commita908b2daf3b7508599f6412337ca10ffffd2332c (patch)
tree14808a00b3b58e196daa93329034a838079882e4
parenta5222ca53a10cb8bd880c5a26ad3c8103f3d6ad4 (diff)
downloadmanamarket-a908b2daf3b7508599f6412337ca10ffffd2332c.tar.gz
manamarket-a908b2daf3b7508599f6412337ca10ffffd2332c.tar.bz2
manamarket-a908b2daf3b7508599f6412337ca10ffffd2332c.tar.xz
manamarket-a908b2daf3b7508599f6412337ca10ffffd2332c.zip
Reduce the interval for the shop emote to 2 minutes.
-rw-r--r--utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils.py b/utils.py
index 0969606..8d172fa 100644
--- a/utils.py
+++ b/utils.py
@@ -109,7 +109,7 @@ class Broadcast:
def send_broadcast(self):
while self.Active:
- if (time.time() - self.Timer) > 5 * 60:
+ if (time.time() - self.Timer) > 2 * 60:
self.mapserv.sendall(emote(193))
self.Timer = time.time()
print "shop_broadcast"