diff options
Diffstat (limited to 'src/game/client/components/effects.cpp')
| -rw-r--r-- | src/game/client/components/effects.cpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/game/client/components/effects.cpp b/src/game/client/components/effects.cpp index 79117d30..45dd856e 100644 --- a/src/game/client/components/effects.cpp +++ b/src/game/client/components/effects.cpp @@ -1,6 +1,7 @@ /* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */ /* If you are missing that file, acquire a complete release at teeworlds.com. */ #include <engine/demo.h> +#include <engine/shared/config.h> #include <game/generated/client_data.h> @@ -153,9 +154,14 @@ void CEffects::PlayerDeath(vec2 Pos, int Cid) if(Cid >= 0) { - const CSkins::CSkin *s = m_pClient->m_pSkins->Get(m_pClient->m_aClients[Cid].m_SkinId); - if(s) - BloodColor = s->m_BloodColor; + if(g_Config.m_PlayerUseCustomColor) + BloodColor = m_pClient->m_pSkins->GetColorV3(g_Config.m_PlayerColorBody); + else + { + const CSkins::CSkin *s = m_pClient->m_pSkins->Get(m_pClient->m_aClients[Cid].m_SkinId); + if(s) + BloodColor = s->m_BloodColor; + } } for(int i = 0; i < 64; i++) |