| 358 | }; |
| 359 | |
| 360 | void afxProjectile::explode(const Point3F& p, const Point3F& n, const U32 collideType) |
| 361 | { |
| 362 | // Make sure we don't explode twice... |
| 363 | if ( isHidden() ) |
| 364 | return; |
| 365 | |
| 366 | Parent::explode(p, n, collideType); |
| 367 | |
| 368 | if (isClientObject() && client_only) |
| 369 | Sim::postEvent(this, new afxProjectileDeleteEvent, Sim::getCurrentTime() + DeleteWaitTime); |
| 370 | } |
| 371 | |
| 372 | //~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~~// |
nothing calls this directly
no test coverage detected