diff --git a/src/com/massivecraft/factions/cmd/CmdFactionsList.java b/src/com/massivecraft/factions/cmd/CmdFactionsList.java index 87aa093b..e937c7c0 100644 --- a/src/com/massivecraft/factions/cmd/CmdFactionsList.java +++ b/src/com/massivecraft/factions/cmd/CmdFactionsList.java @@ -49,7 +49,7 @@ public class CmdFactionsList extends FactionsCommand // Args int page = this.readArg(); final MPlayer msender = this.msender; - Predicate onlinePredicate = PredicateAnd.get(SenderColl.PREDICATE_ONLINE, PredicateVisibleTo.get(sender)); + final Predicate onlinePredicate = PredicateAnd.get(SenderColl.PREDICATE_ONLINE, PredicateVisibleTo.get(sender)); // NOTE: The faction list is quite slow and mostly thread safe. // We run it asynchronously to spare the primary server thread.