This commit is contained in:
Lizbeth Rika 2015-02-27 23:24:44 +00:00
parent 074e4ba25f
commit 09b041e48e

View file

@ -316,7 +316,7 @@ public class SpellHelper
private static final Pattern FAKE_PLAYER_PATTERN = Pattern.compile("^(?:\\[.*\\])|(?:ComputerCraft)$");
public static boolean isFakePlayer(EntityPlayer player)
{
return player instanceof FakePlayer || FAKE_PLAYER_PATTERN.matcher(name).matches();
return player instanceof FakePlayer || FAKE_PLAYER_PATTERN.matcher(SpellHelper.getUsername(player)).matches();
}
public static void smashBlock(World world, int posX, int posY, int posZ)