Change tutorial typeclass to Tutorial Readable and TutorialClimbable. Improve error report for failed typeclass import.

This commit is contained in:
Griatch 2019-08-24 16:55:46 +02:00
parent 5755fbdb18
commit 7f3c6dd918
5 changed files with 27 additions and 22 deletions

View file

@ -9,8 +9,8 @@ Objects:
TutorialObject
Readable
Climbable
TutorialReadable
TutorialClimbable
Obelisk
LightSource
CrumblingWall
@ -113,7 +113,7 @@ class CmdSetReadable(CmdSet):
self.add(CmdRead())
class Readable(TutorialObject):
class TutorialReadable(TutorialObject):
"""
This simple object defines some attributes and
"""
@ -183,7 +183,7 @@ class CmdSetClimbable(CmdSet):
self.add(CmdClimb())
class Climbable(TutorialObject):
class TutorialClimbable(TutorialObject):
"""
A climbable object. All that is special about it is that it has
the "climb" command available on it.