Update version to 1.6.9_pre, fix for invalid comparison

This commit is contained in:
Brettflan 2012-08-07 21:58:46 -05:00
parent 6059ee0b0b
commit d29c7f22fa
2 changed files with 2 additions and 2 deletions

@ -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);