diff options
| author | 2018-09-01 21:17:42 +0100 | |
|---|---|---|
| committer | 2018-09-01 21:17:42 +0100 | |
| commit | e305b178962cb3a87c57533af493b328cbf449e1 (patch) | |
| tree | 5cebcf8c0378c0b68f75a41254ec706f2645c153 | |
| parent | Fix duck stats (diff) | |
| signature | ||
Fix iterations
| -rw-r--r-- | modules/ducks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ducks.py b/modules/ducks.py index b313a2c6..83251cef 100644 --- a/modules/ducks.py +++ b/modules/ducks.py @@ -228,10 +228,10 @@ class Module(object): nick = user.nickname id = user.id - poached = user.get_channel_settings_per_setting("ducks-shot", 0 + poached = user.get_channel_settings_per_setting("ducks-shot", [] ) friends = user.get_channel_settings_per_setting( - "ducks-befriended", 0 + "ducks-befriended", [] ) channel_friends = 0 |
