This prevents spawning monsters on the roof of the map, from where they would just start tweaking and be a bit useless.
Instead, the nade now bounces off the roof back down, like translocate and spawn nade.
proj.avelocity = randomvec() * 720;
proj.alphamod = nade_type.m_alpha;
- if (nade_type == NADE_TYPE_TRANSLOCATE || nade_type == NADE_TYPE_SPAWN)
+ if (nade_type == NADE_TYPE_TRANSLOCATE
+ || nade_type == NADE_TYPE_SPAWN
+ || nade_type == NADE_TYPE_MONSTER)
proj.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_PLAYERCLIP | DPCONTENTS_BOTCLIP;
else
proj.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY;
_nade.toss_time = time;
_nade.solid = SOLID_CORPSE; //((STAT(NADE_BONUS_TYPE, _nade) == NADE_TYPE_TRANSLOCATE) ? SOLID_CORPSE : SOLID_BBOX);
- if(STAT(NADE_BONUS_TYPE, _nade) == NADE_TYPE_TRANSLOCATE.m_id || STAT(NADE_BONUS_TYPE, _nade) == NADE_TYPE_SPAWN.m_id)
+ if(STAT(NADE_BONUS_TYPE, _nade) == NADE_TYPE_TRANSLOCATE.m_id
+ || STAT(NADE_BONUS_TYPE, _nade) == NADE_TYPE_SPAWN.m_id
+ || STAT(NADE_BONUS_TYPE, _nade) == NADE_TYPE_MONSTER.m_id)
_nade.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_PLAYERCLIP | DPCONTENTS_BOTCLIP;
else
_nade.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY;