diff skaapsteker/sprites/items.py @ 417:e289a111c743

edited item text
author anna <annamalczyk@gmail.com>
date Sat, 09 Apr 2011 17:43:39 +0200
parents 8ac5b3d619fe
children e65f6783a9f7
line wrap: on
line diff
--- 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()