WEAPON_SATCHEL: Don't use private APIs when blowing up the satchel bombs.
This commit is contained in:
parent
753af7e8fb
commit
aaf15a3f28
1 changed files with 2 additions and 2 deletions
|
@ -39,8 +39,8 @@ s_satchel_detonate(entity master)
|
|||
if (b.owner != master)
|
||||
continue;
|
||||
|
||||
NSProjectile satchelEnt = (NSProjectile)b;
|
||||
satchelEnt._Explode();
|
||||
NSEntity satchelEnt = (NSEntity)b;
|
||||
satchelEnt.Trigger(master, TRIG_TOGGLE);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue