[Fix] NPE on ptime from console

This commit is contained in:
GunfighterJ 2013-04-02 10:21:20 -05:00
parent e3183e66df
commit e4b04db412

View file

@ -46,7 +46,7 @@ public class Commandptime extends EssentialsCommand
}
User user = ess.getUser(sender);
if ((!users.contains(user) || users.size() > 1) && user != null && !user.isAuthorized("essentials.ptime.others"))
if (user != null && (!users.contains(user) || users.size() > 1)&& !user.isAuthorized("essentials.ptime.others"))
{
user.sendMessage(_("pTimeOthersPermission"));
return;