Skip to content

Commit

Permalink
Fix Weh Juice and Other emote chems not working (space-wizards#28562)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vermidia authored Jun 3, 2024
1 parent 5e51a1d commit 2bd4f85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Chat/Systems/ChatSystem.Emote.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void TryEmoteWithChat(
bool ignoreActionBlocker = false
)
{
if (_whitelistSystem.IsWhitelistFailOrNull(emote.Whitelist, source) || _whitelistSystem.IsBlacklistPass(emote.Blacklist, source))
if (_whitelistSystem.IsWhitelistFail(emote.Whitelist, source) || _whitelistSystem.IsBlacklistPass(emote.Blacklist, source))
return;

if (!emote.Available &&
Expand Down

0 comments on commit 2bd4f85

Please sign in to comment.