Change tutorial typeclass to Tutorial Readable and TutorialClimbable. Improve error report for failed typeclass import.
This commit is contained in:
parent
5755fbdb18
commit
7f3c6dd918
5 changed files with 27 additions and 22 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue