Return normal usage, not console usage.

This commit is contained in:
GJ 2013-02-02 21:29:55 -05:00
parent 2e3c1d53f5
commit e92b57c50c

View File

@ -6,7 +6,6 @@ import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;
import com.gmail.nossr50.datatypes.McMMOPlayer; import com.gmail.nossr50.datatypes.McMMOPlayer;
import com.gmail.nossr50.commands.CommandHelper;
import com.gmail.nossr50.datatypes.PlayerProfile; import com.gmail.nossr50.datatypes.PlayerProfile;
import com.gmail.nossr50.locale.LocaleLoader; import com.gmail.nossr50.locale.LocaleLoader;
import com.gmail.nossr50.util.Permissions; import com.gmail.nossr50.util.Permissions;
@ -19,8 +18,8 @@ public class McgodCommand implements CommandExecutor {
switch (args.length) { switch (args.length) {
case 0: case 0:
if (CommandHelper.noConsoleUsage(sender)) { if (!(sender instanceof Player)) {
return true; return false;
} }
profile = Users.getPlayer((Player) sender).getProfile(); profile = Users.getPlayer((Player) sender).getProfile();