Update of /cvsroot/wpdev/xmlscripts/scripts/commands
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4328/commands
Modified Files:
restore.py
Log Message:
Another stupid bug from me :X
Index: restore.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/commands/restore.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** restore.py 23 Aug 2004 03:10:39 -0000 1.3
--- restore.py 27 Aug 2004 00:42:39 -0000 1.4
***************
*** 42,47 ****
target.char.mana = int( target.char.maxmana )
target.char.updatestats()
! target.effect(0x376A, 9, 32)
! target.soundeffect(0x202)
char.log( LOG_MESSAGE, "Restored 0x%x.\n" % target.char.serial )
--- 42,47 ----
target.char.mana = int( target.char.maxmana )
target.char.updatestats()
! target.char.effect(0x376A, 9, 32)
! target.char.soundeffect(0x202)
char.log( LOG_MESSAGE, "Restored 0x%x.\n" % target.char.serial )
***************
*** 59,63 ****
target.char.hitpoints = int( target.char.maxhitpoints )
target.char.updatestats()
! target.effect(0x376A, 9, 32)
! target.soundeffect(0x202)
char.log( LOG_MESSAGE, "Healed 0x%x.\n" % target.char.serial )
--- 59,63 ----
target.char.hitpoints = int( target.char.maxhitpoints )
target.char.updatestats()
! target.char.effect(0x376A, 9, 32)
! target.char.soundeffect(0x202)
char.log( LOG_MESSAGE, "Healed 0x%x.\n" % target.char.serial )
|