Fix advancement spam check

This commit is contained in:
Vankka 2023-06-19 18:52:41 +03:00
parent c8590cfe2f
commit daee555fed
No known key found for this signature in database
GPG Key ID: 6E50CB7A29B96AD0

View File

@ -68,7 +68,7 @@ public class AwardMessageModule extends AbstractGameMessageModule<AwardMessageCo
return;
}
if (!checkIfShouldPermit(event.getPlayer())) {
if (checkIfShouldPermit(event.getPlayer())) {
process(event, event.getPlayer(), event.getGameChannel());
}