about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/game/client/components/emoticon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/client/components/emoticon.cpp b/src/game/client/components/emoticon.cpp
index de822b4f..0f59001d 100644
--- a/src/game/client/components/emoticon.cpp
+++ b/src/game/client/components/emoticon.cpp
@@ -17,7 +17,7 @@ CEmoticon::CEmoticon()
 void CEmoticon::ConKeyEmoticon(IConsole::IResult *pResult, void *pUserData)
 {
 	CEmoticon *pSelf = (CEmoticon *)pUserData;
-	if(pSelf->Client()->State() != IClient::STATE_DEMOPLAYBACK)
+	if(!pSelf->m_pClient->m_Snap.m_Spectate && pSelf->Client()->State() != IClient::STATE_DEMOPLAYBACK)
 		((CEmoticon *)pUserData)->m_Active = pResult->GetInteger(0) != 0;
 }