comparison gamelib/scenes/machine.py @ 437:cfcab3796410

Make egine room greeting fire once. Remove machine room greeting
author Neil Muller <neil@dip.sun.ac.za>
date Sat, 28 Aug 2010 23:55:56 +0200
parents 19aff54b2e73
children 786773393e6f
comparison
equal deleted inserted replaced
436:6e1ad25a7db5 437:cfcab3796410
73 ))) 73 )))
74 self.add_thing(GenericDescThing("machine.drill_press_block", 7, 74 self.add_thing(GenericDescThing("machine.drill_press_block", 7,
75 "The block for the laser drill press", # TODO: fix description 75 "The block for the laser drill press", # TODO: fix description
76 ((461, 446, 38, 27),))) 76 ((461, 446, 38, 27),)))
77 77
78 def enter(self):
79 return Result("The machine room is dark and forbidding.")
80
81 78
82 class ToMap(Door): 79 class ToMap(Door):
83 80
84 SCENE = "machine" 81 SCENE = "machine"
85 82