WEAPON_SATCHEL: Don't use private APIs when blowing up the satchel bombs.

This commit is contained in:
Marco Cawthorne 2023-07-27 23:48:16 -07:00
parent 753af7e8fb
commit aaf15a3f28
Signed by: eukara
GPG Key ID: CE2032F0A2882A22
1 changed files with 2 additions and 2 deletions

View File

@ -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