mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-25 21:31:23 +00:00
Missed one.
This commit is contained in:
parent
d686fe0b2e
commit
c39447a5cf
1 changed files with 9 additions and 12 deletions
|
@ -308,11 +308,8 @@ void() bsp_explode =
|
||||||
T_RadiusDamage (@self.trigger_field, @self.trigger_field, @self.dmg, world, "");
|
T_RadiusDamage (@self.trigger_field, @self.trigger_field, @self.dmg, world, "");
|
||||||
sound (@self.trigger_field, CHAN_VOICE, "weapons/r_exp3.wav", 1, ATTN_NORM);
|
sound (@self.trigger_field, CHAN_VOICE, "weapons/r_exp3.wav", 1, ATTN_NORM);
|
||||||
|
|
||||||
WriteByte (MSG_MULTICAST, SVC_TEMPENTITY);
|
WriteBytes (MSG_MULTICAST, SVC_TEMPENTITY, TE_EXPLOSION);
|
||||||
WriteByte (MSG_MULTICAST, TE_EXPLOSION);
|
WriteCoordV (MSG_MULTICAST, @self.trigger_field.origin);
|
||||||
WriteCoord (MSG_MULTICAST, @self.trigger_field.origin_x);
|
|
||||||
WriteCoord (MSG_MULTICAST, @self.trigger_field.origin_y);
|
|
||||||
WriteCoord (MSG_MULTICAST, @self.trigger_field.origin_z);
|
|
||||||
multicast (@self.origin, MULTICAST_PHS);
|
multicast (@self.origin, MULTICAST_PHS);
|
||||||
|
|
||||||
remove (@self);
|
remove (@self);
|
||||||
|
|
Loading…
Reference in a new issue