feat: tu43 entity sounds, spawner fixes, and a 16x16 region toolset

This commit is contained in:
Fireblade
2026-07-23 19:47:55 -04:00
parent 1488469cb2
commit a045d994fb
135 changed files with 416 additions and 20 deletions
+4 -3
View File
@@ -9,6 +9,7 @@
#include "net.minecraft.world.entity.monster.h"
#include "SharedConstants.h"
#include "Squid.h"
#include "SoundTypes.h"
#include "../Minecraft.Client/Textures.h"
void Squid::_init()
@@ -48,17 +49,17 @@ void Squid::registerAttributes()
int Squid::getAmbientSound()
{
return -1;
return eSoundType_ENTITY_SQUID_AMBIENT;
}
int Squid::getHurtSound()
{
return -1;
return eSoundType_ENTITY_SQUID_HURT;
}
int Squid::getDeathSound()
{
return -1;
return eSoundType_ENTITY_SQUID_DEATH;
}
float Squid::getSoundVolume()