From 7b3f0cfdab664605e444ad5668b45d07dffcba9f Mon Sep 17 00:00:00 2001 From: arsenicviscera Date: Wed, 11 Mar 2026 02:28:38 -0700 Subject: [PATCH] Fixed default Co-Authored-By: Ayush Thoren --- Minecraft.World/LivingEntity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.World/LivingEntity.cpp b/Minecraft.World/LivingEntity.cpp index 0912a7ba7..39449f19c 100644 --- a/Minecraft.World/LivingEntity.cpp +++ b/Minecraft.World/LivingEntity.cpp @@ -94,7 +94,7 @@ void LivingEntity::_init() noJumpDelay = 0; absorptionAmount = 0.0f; - nametagColor = 0; + nametagColor = 0xFF000000; //default to black. Overridden by stuff } LivingEntity::LivingEntity( Level* level) : Entity(level)