get swinging tool in air woosh sound working again

This commit is contained in:
darkrose 2015-05-27 04:31:08 +10:00
parent f25e802317
commit f6e742e1c2
1 changed files with 3 additions and 0 deletions

View File

@ -2365,6 +2365,9 @@ void Client::playDigSound(content_t c)
if ((c&CONTENT_MOB_MASK) != 0)
return;
}
if (c == CONTENT_IGNORE)
c = CONTENT_AIR;
sound_playDig(c,m_env.getLocalPlayer()->getPosition());
}