Update version to 1.6.9_pre, fix for invalid comparison
This commit is contained in:
parent
6059ee0b0b
commit
d29c7f22fa
@ -1,5 +1,5 @@
|
||||
name: Factions
|
||||
version: 1.6.8
|
||||
version: 1.6.9_pre
|
||||
main: com.massivecraft.factions.P
|
||||
authors: [Olof Larsson, Brett Flannigan]
|
||||
softdepend: [PermissionsEx, Permissions, Essentials, EssentialsChat, HeroChat, iChat, LocalAreaChat, LWC, nChat, ChatManager, CAPI, AuthMe, Vault, Spout, WorldEdit, WorldGuard, AuthDB, CaptureThePoints, CombatTag]
|
||||
|
@ -103,7 +103,7 @@ public class CmdHome extends FCommand
|
||||
|
||||
for (Player p : me.getServer().getOnlinePlayers())
|
||||
{
|
||||
if (p == null || !p.isOnline() || p.isDead() || p == fme || p.getWorld() != w)
|
||||
if (p == null || !p.isOnline() || p.isDead() || p == me || p.getWorld() != w)
|
||||
continue;
|
||||
|
||||
FPlayer fp = FPlayers.i.get(p);
|
||||
|
Loading…
Reference in New Issue
Block a user