mirror of
https://github.com/TuxCoding/FastLogin.git
synced 2025-07-29 18:27:36 +02:00
[Bukkit] Fix adding to premium whitelist
This commit is contained in:
@ -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"));
|
||||
|
Reference in New Issue
Block a user