ArmorStand Entity + Item

This commit is contained in:
ChristianFalegnami
2026-03-15 23:40:01 +01:00
parent 0bee09ecea
commit 60565f7a5e
49 changed files with 1127 additions and 141 deletions
+4 -3
View File
@@ -125,9 +125,10 @@ shared_ptr<AgableMob> Rabbit::getBreedOffspring(shared_ptr<AgableMob> target) {
}
int Rabbit::getAmbientSound() { return eSoundType_MOB_BAT_IDLE; }
int Rabbit::getHurtSound() { return eSoundType_MOB_BAT_HURT; }
int Rabbit::getDeathSound() { return eSoundType_MOB_BAT_DEATH; }
int Rabbit::getAmbientSound() { return eSoundType_MOB_RABBIT_IDLE; }
int Rabbit::getHurtSound() { return eSoundType_MOB_RABBIT_HURT; }
int Rabbit::getDeathSound() { return eSoundType_MOB_RABBIT_DEATH; }
int Rabbit::getHopSound() { return eSoundType_MOB_RABBIT_HOP; }
void Rabbit::readAdditionalSaveData(CompoundTag *tag) {
Animal::readAdditionalSaveData(tag);