Fix npc issues (#320)

This will fix 1 bug..... and will generate new ones! :P
This commit is contained in:
Gabriele C
2015-12-08 20:52:45 +01:00
parent 6ee07160bb
commit e4fbe4ec53
7 changed files with 158 additions and 20 deletions
@@ -137,7 +137,7 @@ public final class Utils {
// TODO: Move to a Manager
public static boolean checkAuth(Player player) {
if (player == null || Utils.isUnrestricted(player) || Utils.isNPC(player)) {
if (player == null || Utils.isUnrestricted(player)) {
return true;
}