Sound Fixes (#686)
* Fix sound settings not applying * Reimplement miles sound artifacts * Fix stone brick stairs recipe * Fix craft and scroll sound * Rename scrollfocus.ogg to scroll.ogg * Remove unneeded code * Reorganize sounds, revert spam sound press, add witch sounds and fix slimes * I forgot my console again
This commit is contained in:
@@ -84,7 +84,7 @@ ePARTICLE_TYPE Slime::getParticleName()
|
||||
|
||||
int Slime::getSquishSound()
|
||||
{
|
||||
return getSize() > 1 ? eSoundType_MOB_SLIME_BIG : eSoundType_MOB_SLIME;
|
||||
return getSize() > 1 ? eSoundType_MOB_SLIME_BIG : eSoundType_MOB_SLIME_SMALL;
|
||||
}
|
||||
|
||||
void Slime::tick()
|
||||
@@ -236,12 +236,12 @@ int Slime::getAttackDamage()
|
||||
|
||||
int Slime::getHurtSound()
|
||||
{
|
||||
return getSize() > 1 ? eSoundType_MOB_SLIME_BIG : eSoundType_MOB_SLIME;
|
||||
return getSize() > 1 ? eSoundType_MOB_SLIME_BIG : eSoundType_MOB_SLIME_SMALL;
|
||||
}
|
||||
|
||||
int Slime::getDeathSound()
|
||||
{
|
||||
return getSize() > 1 ? eSoundType_MOB_SLIME_BIG : eSoundType_MOB_SLIME;
|
||||
return getSize() > 1 ? eSoundType_MOB_SLIME_BIG : eSoundType_MOB_SLIME_SMALL;
|
||||
}
|
||||
|
||||
int Slime::getDeathLoot()
|
||||
|
||||
Reference in New Issue
Block a user