aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/LavaSlime.cpp
diff options
context:
space:
mode:
authorLoki Rautio <lokirautio@gmail.com>2026-03-04 03:56:03 -0600
committerLoki Rautio <lokirautio@gmail.com>2026-03-04 03:56:03 -0600
commit42aec6dac53dffa6afe072560a7e1d4986112538 (patch)
tree0836426857391df1b6a83f6368a183f83ec9b104 /Minecraft.World/LavaSlime.cpp
parentc9d58eeac7c72f0b3038e084667b4d89a6249fce (diff)
parentef9b6fd500dfabd9463267b0dd9e29577eea8a2b (diff)
Merge branch 'main' into pr/win64-world-saves
# Conflicts: # Minecraft.Client/MinecraftServer.cpp # README.md
Diffstat (limited to 'Minecraft.World/LavaSlime.cpp')
-rw-r--r--Minecraft.World/LavaSlime.cpp21
1 files changed, 13 insertions, 8 deletions
diff --git a/Minecraft.World/LavaSlime.cpp b/Minecraft.World/LavaSlime.cpp
index 3ab32d90..21982995 100644
--- a/Minecraft.World/LavaSlime.cpp
+++ b/Minecraft.World/LavaSlime.cpp
@@ -1,6 +1,8 @@
#include "stdafx.h"
#include "net.minecraft.world.level.h"
#include "net.minecraft.world.h"
+#include "net.minecraft.world.entity.ai.attributes.h"
+#include "net.minecraft.world.entity.monster.h"
#include "net.minecraft.world.item.h"
#include "..\Minecraft.Client\Textures.h"
#include "LavaSlime.h"
@@ -14,13 +16,16 @@ LavaSlime::LavaSlime(Level *level) : Slime(level)
// the derived version of the function is called
// 4J Stu - The Slime ctor has already called this, and as we don't override it here don't need to call it
//this->defineSynchedData();
+ registerAttributes();
- // 4J Stu - This function call had to be moved here from the Entity ctor to ensure that the derived version of the function is called
- health = getMaxHealth();
-
- this->textureIdx = TN_MOB_LAVA; // 4J was "/mob/lava.png";
fireImmune = true;
- walkingSpeed = .2f;
+}
+
+void LavaSlime::registerAttributes()
+{
+ Slime::registerAttributes();
+
+ getAttribute(SharedMonsterAttributes::MOVEMENT_SPEED)->setBaseValue(0.2f);
}
bool LavaSlime::canSpawn()
@@ -95,7 +100,7 @@ void LavaSlime::decreaseSquish()
void LavaSlime::jumpFromGround()
{
yd = 0.42f + getSize() * .1f;
- this->hasImpulse = true;
+ hasImpulse = true;
}
void LavaSlime::causeFallDamage(float distance)
@@ -114,12 +119,12 @@ int LavaSlime::getAttackDamage()
int LavaSlime::getHurtSound()
{
- return eSoundType_MOB_SLIME;
+ return getSize() > 1 ? eSoundType_MOB_SLIME_BIG : eSoundType_MOB_SLIME_SMALL;
}
int LavaSlime::getDeathSound()
{
- return eSoundType_MOB_SLIME;
+ return getSize() > 1 ? eSoundType_MOB_SLIME_BIG : eSoundType_MOB_SLIME_SMALL;
}
int LavaSlime::getSquishSound()