Don't create hit effect for no graphics STK

This commit is contained in:
Benau 2020-02-20 10:09:29 +08:00
parent 3bbca7849d
commit c0a350fe6e
2 changed files with 4 additions and 0 deletions

@ -186,6 +186,8 @@ void Bowling::removeRollSfx()
*/
HitEffect* Bowling::getHitEffect() const
{
if (GUIEngine::isNoGraphics())
return NULL;
if (m_deleted_once)
return NULL;
if(m_has_hit_kart)

@ -624,6 +624,8 @@ void Flyable::explode(AbstractKart *kart_hit, PhysicalObject *object,
*/
HitEffect* Flyable::getHitEffect() const
{
if (GUIEngine::isNoGraphics())
return NULL;
return m_deleted_once ? NULL :
new Explosion(getXYZ(), "explosion", "explosion_cake.xml");
} // getHitEffect