Converted set into list

This commit is contained in:
Louis Vogt
2014-06-21 10:01:35 +02:00
parent 68018d9c2a
commit a6b22945d8

View File

@@ -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