Update version to 1.7.6_pre, fix for invalid comparison

This commit is contained in:
Brettflan 2012-08-07 21:58:41 -05:00
parent af6c4952fa
commit a57132aa7d
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
name: Factions name: Factions
version: 1.7.5_dev version: 1.7.6_pre
main: com.massivecraft.factions.P main: com.massivecraft.factions.P
authors: [Olof Larsson, Brett Flannigan] 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] softdepend: [PermissionsEx, Permissions, Essentials, EssentialsChat, HeroChat, iChat, LocalAreaChat, LWC, nChat, ChatManager, CAPI, AuthMe, Vault, Spout, WorldEdit, WorldGuard, AuthDB, CaptureThePoints, CombatTag]

View File

@ -103,7 +103,7 @@ public class CmdHome extends FCommand
for (Player p : me.getServer().getOnlinePlayers()) 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; continue;
FPlayer fp = FPlayers.i.get(p); FPlayer fp = FPlayers.i.get(p);