mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-25 13:21:30 +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, "");
|
||||
sound (@self.trigger_field, CHAN_VOICE, "weapons/r_exp3.wav", 1, ATTN_NORM);
|
||||
|
||||
WriteByte (MSG_MULTICAST, SVC_TEMPENTITY);
|
||||
WriteByte (MSG_MULTICAST, TE_EXPLOSION);
|
||||
WriteCoord (MSG_MULTICAST, @self.trigger_field.origin_x);
|
||||
WriteCoord (MSG_MULTICAST, @self.trigger_field.origin_y);
|
||||
WriteCoord (MSG_MULTICAST, @self.trigger_field.origin_z);
|
||||
WriteBytes (MSG_MULTICAST, SVC_TEMPENTITY, TE_EXPLOSION);
|
||||
WriteCoordV (MSG_MULTICAST, @self.trigger_field.origin);
|
||||
multicast (@self.origin, MULTICAST_PHS);
|
||||
|
||||
remove (@self);
|
||||
|
@ -321,7 +318,7 @@ void() bsp_explode =
|
|||
|
||||
void() misc_explobsp =
|
||||
{
|
||||
local entity spot;
|
||||
local entity spot;
|
||||
|
||||
@self.solid = SOLID_BBOX;
|
||||
@self.movetype = MOVETYPE_NONE;
|
||||
|
|
Loading…
Reference in a new issue