Added some fixes to tutorial world.

This commit is contained in:
Griatch 2012-02-29 19:29:56 +01:00
parent a12f7b9c32
commit 7e146eae11
3 changed files with 7 additions and 4 deletions

View file

@ -336,7 +336,7 @@ class LightSource(TutorialObject):
super(LightSource, self).at_object_creation()
self.db.tutorial_info = "This object can be turned on off and has a timed script controlling it."
self.db.is_active = False
self.db.burntime = 60 # 1 minute
self.db.burntime = 60*3 # 3 minutes
self.db.desc = "A splinter of wood with remnants of resin on it, enough for burning."
# add commands
self.cmdset.add_default(CmdSetLightSource, permanent=True)