# HG changeset patch # User Adrianna PiƄska # Date 1283030159 -7200 # Node ID 785bceda2f4fd37155117d608cf6b57645cd33fd # Parent a804a9489d3203fb2132d78c0cc7055153cd18cc Full stops. diff -r a804a9489d32 -r 785bceda2f4f gamelib/scenes/cryo.py --- a/gamelib/scenes/cryo.py Sat Aug 28 23:11:16 2010 +0200 +++ b/gamelib/scenes/cryo.py Sat Aug 28 23:15:59 2010 +0200 @@ -172,7 +172,7 @@ self.state.current_scene.set_data('vandalism_warn', False) responses.append(make_jim_dialog( ("Prisoner %s. Vandalism is an offence punishable by a " - "minimum of an additional 6 months to your sentence" + "minimum of an additional 6 months to your sentence." ) % PLAYER_ID, self.state)) return responses @@ -187,7 +187,7 @@ def get_description(self): if self.get_data('fixed'): return "These pipes carry cooling fluid to empty cryo units." - return "There used to be a pipe carrying cooling fluid here" + return "There used to be a pipe carrying cooling fluid here." class UncuttableCryoPipes(Thing): @@ -313,8 +313,8 @@ def interact_with_titanium_leg(self, item): return Result(random.choice([ - "You bang on the chamber with the titanium femur. Nothing much happens", - "Hitting the cryo unit with the femur doesn't achieve anything", + "You bang on the chamber with the titanium femur. Nothing much happens.", + "Hitting the cryo unit with the femur doesn't achieve anything.", "You hit the chamber with the femur. Nothing happens.", ]), soundfile="clang2.ogg") @@ -439,7 +439,7 @@ INITIAL = "plaque" def interact_without(self): - return Result("The plaque is welded to the unit. You can't shift it") + return Result("The plaque is welded to the unit. You can't shift it.") def get_description(self): return "'Prisoner 98CC-764E646391EE. War crimes. 45 years." @@ -466,7 +466,7 @@ INITIAL = 'pools' def get_description(self): - return "Coolant leaks disturbingly from the bulkheads" + return "Coolant leaks disturbingly from the bulkheads." def interact_without(self): return Result("It's gooey") @@ -475,7 +475,7 @@ full = FullBottle('full_detergent_bottle') self.state.add_item(full) self.state.replace_inventory_item(item.name, full.name) - return Result("You scoop up some coolant and fill the bottle") + return Result("You scoop up some coolant and fill the bottle.") class CryoCompDetail(Scene):