mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 17:22:12 +00:00
Forgot to do this before making the previous commit; completes support for no-points drone badniks.
This commit is contained in:
parent
6d1ba20a1d
commit
94c7d9bc52
1 changed files with 1 additions and 1 deletions
|
@ -8347,7 +8347,7 @@ mobj_t *P_SpawnMobj(fixed_t x, fixed_t y, fixed_t z, mobjtype_t type)
|
|||
mobj->height = info->height;
|
||||
mobj->flags = info->flags;
|
||||
|
||||
mobj->health = info->spawnhealth;
|
||||
mobj->health = (info->spawnhealth ? info->spawnhealth : 1);
|
||||
|
||||
mobj->reactiontime = info->reactiontime;
|
||||
|
||||
|
|
Loading…
Reference in a new issue