changeset 372:3aee5895c2c6

remove random out of 1 choice
author Neil Muller <neil@dip.sun.ac.za>
date Sat, 28 Aug 2010 17:42:40 +0200
parents 3838f4a563a8
children 7338d8f49f64
files gamelib/scenes/machine.py
diffstat 1 files changed, 1 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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):