mirror of
https://github.com/nzp-team/quakec.git
synced 2025-03-24 19:51:58 +00:00
SERVER: zombie_core.qc: ifdef for FTE
This commit is contained in:
parent
f1321d241f
commit
9a7b78fce7
1 changed files with 6 additions and 2 deletions
|
@ -1828,13 +1828,17 @@ void(entity where) spawn_a_zombieB =
|
|||
|
||||
#endif // FTE
|
||||
|
||||
szombie.solid = SOLID_SLIDEBOX;
|
||||
|
||||
#ifdef FTE
|
||||
|
||||
szombie.solid = SOLID_SLIDEBOX;
|
||||
|
||||
szombie.dimension_solid = HITBOX_DIM_ZOMBIES;
|
||||
szombie.dimension_hit &= ~HITBOX_DIM_ZOMBIES;
|
||||
|
||||
#else
|
||||
|
||||
szombie.solid = SOLID_CORPSE;
|
||||
|
||||
#endif // FTE
|
||||
|
||||
szombie.movetype = MOVETYPE_WALK;
|
||||
|
|
Loading…
Reference in a new issue