changeset 417:e289a111c743

edited item text
author anna <annamalczyk@gmail.com>
date Sat, 09 Apr 2011 17:43:39 +0200
parents 3db2fc263d11
children c6e9b3006ef9
files skaapsteker/sprites/__init__.pyc skaapsteker/sprites/base.pyc skaapsteker/sprites/enemies.pyc skaapsteker/sprites/items.py skaapsteker/sprites/items.pyc skaapsteker/sprites/npcs.pyc skaapsteker/sprites/player.pyc skaapsteker/sprites/projectiles.pyc
diffstat 8 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
Binary file skaapsteker/sprites/__init__.pyc has changed
Binary file skaapsteker/sprites/base.pyc has changed
Binary file skaapsteker/sprites/enemies.pyc has changed
--- a/skaapsteker/sprites/items.py	Sat Apr 09 17:42:20 2011 +0200
+++ b/skaapsteker/sprites/items.py	Sat Apr 09 17:43:39 2011 +0200
@@ -141,18 +141,18 @@
     def player_action(self, player):
         if self._me.litness == 'set':
             if player.has_item('kindling'):
-                notify('You put the kindling in the fire.')
+                notify("You put the kindling in the signal fire.")
             elif player.has_item('oil'):
-                notify('You pour the oil on the fire.')
+                notify("You pour the oil on the signal fire.")
             else:
                 return
             player.discard_item()
             self._me.litness = 'kindled'
         elif self._me.litness == 'kindled':
             if player.has_item('kindling'):
-                notify('You put the kindling in the fire and light it.')
+                notify("You put the kindling on the signal fire and light it.")
             elif player.has_item('oil'):
-                notify('You pour the oil on the fire and light it.')
+                notify("You pour the oil on the signal fire and light it.")
             else:
                 return
             player.discard_item()
Binary file skaapsteker/sprites/items.pyc has changed
Binary file skaapsteker/sprites/npcs.pyc has changed
Binary file skaapsteker/sprites/player.pyc has changed
Binary file skaapsteker/sprites/projectiles.pyc has changed