| 64 | } |
| 65 | |
| 66 | void PlayerDeployment::uninit() { |
| 67 | m_scriptComponent.uninit(); |
| 68 | m_scriptComponent.removeCallbacks("entity"); |
| 69 | m_scriptComponent.removeCallbacks("player"); |
| 70 | m_scriptComponent.removeCallbacks("status"); |
| 71 | m_scriptComponent.removeCallbacks("config"); |
| 72 | m_world = nullptr; |
| 73 | } |
| 74 | |
| 75 | void PlayerDeployment::teleportOut() { |
| 76 | m_scriptComponent.invoke("teleportOut"); |
nothing calls this directly
no test coverage detected