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:
GuglioIsStupid
2026-03-06 19:38:14 -05:00
committed by GitHub
parent d4db0b947f
commit 55be6447e3
869 changed files with 81 additions and 84 deletions

View File

@@ -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()