mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-22 20:01:34 +00:00
SERVER: Fix 'Requires Power' spawnflag not doing anything on Zap-O-Matic
This commit is contained in:
parent
1321afa1ee
commit
848541ca28
1 changed files with 6 additions and 0 deletions
|
@ -25,6 +25,8 @@
|
|||
|
||||
*/
|
||||
|
||||
#define TRAP_SPAWNFLAG_REQUIRESPOWER 1
|
||||
|
||||
//
|
||||
// --------------------
|
||||
// Electric Trap
|
||||
|
@ -269,6 +271,10 @@ void() zapper_switch =
|
|||
if (!self.calc_time)
|
||||
self.calc_time = 60;
|
||||
|
||||
// Requires Power
|
||||
if (self.spawnflags & TRAP_SPAWNFLAG_REQUIRESPOWER)
|
||||
self.requirespower = true;
|
||||
|
||||
self.solid = SOLID_TRIGGER;
|
||||
precache_model(self.model);
|
||||
precache_sound("sounds/machines/elec_shock.wav");
|
||||
|
|
Loading…
Reference in a new issue