# HG changeset patch # User Neil Muller # Date 1283010160 -7200 # Node ID 3aee5895c2c67ce29168c6f6bfc2345dc5ece094 # Parent 3838f4a563a86e8164bc52cea39042b3726c2c0e remove random out of 1 choice diff -r 3838f4a563a8 -r 3aee5895c2c6 gamelib/scenes/machine.py --- a/gamelib/scenes/machine.py Sat Aug 28 17:39:14 2010 +0200 +++ b/gamelib/scenes/machine.py Sat Aug 28 17:42:40 2010 +0200 @@ -1,7 +1,5 @@ """Machine room where tools and machines are found.""" -import random - from gamelib.state import Scene, Item, Thing, Result from gamelib.cursor import CursorSprite from gamelib.scenes.scene_widgets import (Door, InteractText, InteractNoImage, @@ -207,9 +205,7 @@ INITIAL = 'lights' def get_description(self): - return random.choice([ - "The power lights pulse expectantly.", - ]) + return "The power lights pulse expectantly." class CryoPipesOne(Item):