mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- this must remain specific to Strife...
SVN r3581 (trunk)
This commit is contained in:
parent
a79bcb73ac
commit
aa7464df66
1 changed files with 4 additions and 1 deletions
|
@ -4665,7 +4665,10 @@ void P_SpawnBlood (fixed_t x, fixed_t y, fixed_t z, angle_t dir, int damage, AAc
|
|||
{
|
||||
th->SetState (state);
|
||||
}
|
||||
else damage += 2;
|
||||
else if (gameinfo.gametype == GAME_Strife) // this modification is Strife-specific.
|
||||
{
|
||||
damage += 2;
|
||||
}
|
||||
}
|
||||
|
||||
// Moved out of the blood actor so that replacing blood is easier
|
||||
|
|
Loading…
Reference in a new issue