Forgot to do this before making the previous commit; completes support for no-points drone badniks.

This commit is contained in:
toasterbabe 2018-05-03 00:00:22 +01:00
parent 6d1ba20a1d
commit 94c7d9bc52

View file

@ -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;