Fix syntax error in penguin class __slots__

This commit is contained in:
Ben 2019-08-06 22:52:37 +01:00
parent 0bc4bdd8fe
commit 093766abef

View File

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