mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- 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:
parent
f918a43286
commit
9cdd0b98ce
3 changed files with 6 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue