summaryrefslogtreecommitdiff
path: root/mentio.py
diff options
context:
space:
mode:
authorLouis Vogt <l.uisv.gt@icloud.com>2014-06-21 10:01:35 +0200
committerLouis Vogt <l.uisv.gt@icloud.com>2014-06-21 10:01:35 +0200
commita6b22945d894566abc5c2de45b5bae37eeceefe4 (patch)
tree131df292702c135afe5c7642a603bc7e30c5e3d3 /mentio.py
parent68018d9c2a3ecff4cf042aa24ef55ee8588c152f (diff)
Converted set into list
Diffstat (limited to 'mentio.py')
-rw-r--r--mentio.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mentio.py b/mentio.py
index 8508301..1d29d57 100644
--- a/mentio.py
+++ b/mentio.py
@@ -13,7 +13,7 @@ def onChat(event):
if not event.isCancelled():
sender = event.getPlayer()
words = event.getMessage().split(" ")
- recipients = event.getRecipients()
+ recipients = list(event.getRecipients())
for recipient in recipients[:]:
rec_words = words[:] # copy