From a6b22945d894566abc5c2de45b5bae37eeceefe4 Mon Sep 17 00:00:00 2001 From: Louis Vogt Date: Sat, 21 Jun 2014 10:01:35 +0200 Subject: [PATCH] Converted set into list --- mentio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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