1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-07 13:48:00 -05:00

fix profanity determent on chat enabled check

This commit is contained in:
RaidMax 2023-04-08 16:11:22 -05:00
parent 5571e9317f
commit b1f3155131

View File

@ -48,7 +48,7 @@ public class Plugin : IPluginV2
private Task GameEventSubscriptionsOnClientMessaged(ClientMessageEvent clientEvent, CancellationToken token)
{
if (!_configuration?.EnableProfanityDeterment ?? false)
if (!(_configuration?.EnableProfanityDeterment ?? false))
{
return Task.CompletedTask;
}