| 300 | } |
| 301 | |
| 302 | void Creature::createMeshWeapons() |
| 303 | { |
| 304 | if(getIsOnServerMap()) |
| 305 | return; |
| 306 | |
| 307 | if(mWeaponL != nullptr) |
| 308 | RenderManager::getSingleton().rrCreateWeapon(this, mWeaponL, "L"); |
| 309 | |
| 310 | if(mWeaponR != nullptr) |
| 311 | RenderManager::getSingleton().rrCreateWeapon(this, mWeaponR, "R"); |
| 312 | } |
| 313 | |
| 314 | void Creature::destroyMeshWeapons() |
| 315 | { |
nothing calls this directly
no test coverage detected