From 8c10057098a7eb4163444194d3f71a534bb513d2 Mon Sep 17 00:00:00 2001 From: arsenicviscera Date: Sun, 15 Mar 2026 16:21:22 -0700 Subject: [PATCH] Fixed .arc issues with release builds Yeah for some reason some stuff was missing when you built in release but now it should be fixed! --- Minecraft.World/LivingEntity.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Minecraft.World/LivingEntity.cpp b/Minecraft.World/LivingEntity.cpp index 3af9efe96..6cbdf0ed6 100644 --- a/Minecraft.World/LivingEntity.cpp +++ b/Minecraft.World/LivingEntity.cpp @@ -884,8 +884,10 @@ void LivingEntity::breakItem(shared_ptr itemInstance) } } +//Hey this is a random comment to get the commit working because it didn't recognize the files i changed (L) void LivingEntity::die(DamageSource *source) { + shared_ptr sourceEntity = source->getEntity(); shared_ptr killer = getKillCredit(); if (deathScore >= 0 && killer != nullptr) killer->awardKillScore(shared_from_this(), deathScore);