diff --git a/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/commands/CrackedCommand.java b/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/commands/CrackedCommand.java index 977c727f..88378b46 100644 --- a/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/commands/CrackedCommand.java +++ b/bukkit/src/main/java/com/github/games647/fastlogin/bukkit/commands/CrackedCommand.java @@ -77,7 +77,7 @@ public class CrackedCommand implements CommandExecutor { } //existing player is already cracked - if (profile.getUserId() == -1 && !profile.isPremium()) { + if (profile.getUserId() != -1 && !profile.isPremium()) { sender.sendMessage(plugin.getCore().getMessage("not-premium-other")); } else { sender.sendMessage(plugin.getCore().getMessage("remove-premium"));