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!
This commit is contained in:
arsenicviscera 2026-03-15 16:21:22 -07:00
parent 06d10e1159
commit 8c10057098

View file

@ -884,8 +884,10 @@ void LivingEntity::breakItem(shared_ptr<ItemInstance> 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<Entity> sourceEntity = source->getEntity();
shared_ptr<LivingEntity> killer = getKillCredit();
if (deathScore >= 0 && killer != nullptr) killer->awardKillScore(shared_from_this(), deathScore);