# HG changeset patch # User Stefano Rivera # Date 1283105045 -7200 # Node ID 7ae663c687ed66b3e8515ed4b8d0375cd488249f # Parent 14eb4b92c93b413ff97f67f6ef83c6e85e72ecc1 Hook computer control panel to engine room computer. Tweak sign above door diff -r 14eb4b92c93b -r 7ae663c687ed gamelib/scenes/engine.py --- a/gamelib/scenes/engine.py Sun Aug 29 19:41:07 2010 +0200 +++ b/gamelib/scenes/engine.py Sun Aug 29 20:04:05 2010 +0200 @@ -45,12 +45,6 @@ (549, 479, 60, 55), ) )) - self.add_thing(GenericDescThing('engine.controlpanel', 2, - "A control panel. It seems dead.", - ( - (513, 330, 58, 50), - ) - )) self.add_thing(GenericDescThing('engine.superconductors', 4, "Superconductors. The engines must be power hogs.", ( @@ -119,7 +113,8 @@ ) )) self.add_thing(GenericDescThing('engine.exit_sign', 13, - "It's one of those glow-in-the-dark exit signs that you see everywhere.", + "It's one of those glow-in-the-dark signs needed to satisfy the " + "health and safety inspectors.", ( (681, 322, 80, 33), ) @@ -503,7 +498,10 @@ NAME = "engine.computer_console" INTERACTS = { - 'console': InteractNoImage(293, 287, 39, 36), + 'console': InteractRectUnion(( + (293, 287, 39, 36), + (513, 330, 58, 50), + )), } INITIAL = 'console'