mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-10 14:42:05 +00:00
FTE/SERVER: Force Hull 1 for NZ:P Beta Zombies
This commit is contained in:
parent
56db495482
commit
499ab18f8d
1 changed files with 9 additions and 0 deletions
|
@ -1726,6 +1726,15 @@ void(entity where) spawn_a_zombieB =
|
|||
if (map_compatibility_mode == MAP_COMPAT_BETA) {
|
||||
szombie.mins = '-6 -6 -24';
|
||||
szombie.maxs = '6 6 22';
|
||||
|
||||
#ifdef FTE
|
||||
|
||||
// Need to force-set the hull for FTE or else Zombie setorigin()
|
||||
// calls will fail in tight spaces.
|
||||
szombie.hull = 1;
|
||||
|
||||
#endif // FTE
|
||||
|
||||
} else {
|
||||
szombie.mins = '-8 -8 -32';
|
||||
szombie.maxs = '8 8 30';
|
||||
|
|
Loading…
Reference in a new issue