Dgata arg check

This commit is contained in:
itdominator 2022-09-29 17:32:35 -05:00
parent ded86b81ec
commit bdd532060a
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class EventSystem:
if event_type in self.subscribers:
for fn in self.subscribers[event_type]:
if data:
if hasattr(data, '__iter__'):
if hasattr(data, '__iter__') and not type(data) is str:
fn(*data)
else:
fn(data)