- Added fix for Heretic IDKFA cheat by Karate Chris.

- Added fix for Strife's AlienSpectre obituary by Karate Chris.


SVN r674 (trunk)
This commit is contained in:
Christoph Oelckers 2008-01-07 08:58:18 +00:00
parent f918a43286
commit 9cdd0b98ce
3 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
January 7, 2008 (Changes by Graf Zahl)
- Added fix for Heretic IDKFA cheat by Karate Chris.
- Added fix for Strife's AlienSpectre obituary by Karate Chris.
January 6, 2008 (Changes by Graf Zahl)
- Re-converted icebreak.flac because the old version apparently didn't work.
- Added SBARINFO update #5 by blzut3:

View File

@ -126,6 +126,7 @@ IMPLEMENT_ACTOR (AAlienSpectre1, Strife, 129, 0)
PROP_PainSound ("alienspectre/pain")
PROP_DeathSound ("alienspectre/death")
PROP_ActiveSound ("alienspectre/active")
PROP_Obituary ("$OB_ALIENSPECTE")
END_DEFAULTS
void AAlienSpectre1::Touch (AActor *toucher)

View File

@ -299,7 +299,7 @@ void cht_DoCheat (player_t *player, int cheat)
break;
case CHT_TAKEWEAPS:
if (player->morphTics || player->mo != NULL)
if (player->morphTics || player->mo == NULL || player->mo->health <= 0)
{
return;
}