From c2ec41c391ced5fb7c3b17002967869bbe614b6a Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Tue, 5 Nov 2024 12:07:54 +1100 Subject: [PATCH] Update StarHumanoid.cpp --- source/game/StarHumanoid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/game/StarHumanoid.cpp b/source/game/StarHumanoid.cpp index 6dfe8e3..14af148 100644 --- a/source/game/StarHumanoid.cpp +++ b/source/game/StarHumanoid.cpp @@ -730,7 +730,7 @@ List Humanoid::render(bool withItems, bool withRotationAndScale) { } if (!m_headArmorFrameset.empty()) { - String image = strf("{}:normal", m_headArmorFrameset); + String image = strf("{}:normal{}", m_headArmorFrameset, m_headArmorDirectives.prefix()); auto drawable = Drawable::makeImage(std::move(image), 1.0f / TilePixels, true, headPosition); drawable.imagePart().addDirectives(getHeadDirectives(), true); addDrawable(std::move(drawable));