| 41 | |
| 42 | |
| 43 | void cTNTEntity::Explode(void) |
| 44 | { |
| 45 | m_FuseTicks = 0; |
| 46 | Destroy(true); |
| 47 | LOGD("BOOM at {%f,%f,%f}", GetPosX(), GetPosY(), GetPosZ()); |
| 48 | m_World->DoExplosionAt(4.0, GetPosX() + 0.49, GetPosY() + 0.49, GetPosZ() + 0.49, true, esPrimedTNT, this); |
| 49 | } |
| 50 | |
| 51 | |
| 52 |
nothing calls this directly
no test coverage detected