From 093766abef258228772015916c4bfa3607a12bcc Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 6 Aug 2019 22:52:37 +0100 Subject: [PATCH] Fix syntax error in penguin class __slots__ --- houdini/penguin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/houdini/penguin.py b/houdini/penguin.py index 906de10..bf2a7f0 100644 --- a/houdini/penguin.py +++ b/houdini/penguin.py @@ -5,7 +5,7 @@ from houdini.spheniscidae import Spheniscidae class Penguin(Spheniscidae): - __slots__ = ['x', 'y', 'frame', 'room', 'waddle', 'table', 'data', 'muted' + __slots__ = ['x', 'y', 'frame', 'room', 'waddle', 'table', 'data', 'muted', 'login_key', 'member', 'membership_days', 'avatar', 'walking_puffle', 'permissions', 'active_quests']