Fix missing parenthesis

This commit is contained in:
Ashcon Partovi 2017-11-25 20:33:18 -08:00 committed by GitHub
parent 29a3e34359
commit 5f677c661c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ public class PunishmentEnforcer implements Enableable, MessageListener {
.filter(player -> viewable(player, punishment, true))
.forEach(player -> audiences.get(player).sendMessages(
punishmentFormatter.format(punishment, true,
!localServer._id().equals(punishment.server_id())
!localServer._id().equals(punishment.server_id()))
));
}