mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-06-25 02:04:44 +02:00
Fixed broken /party invite
command
This commit is contained in:
@ -19,8 +19,8 @@ public class PartyInviteCommand implements CommandExecutor {
|
||||
case 2:
|
||||
McMMOPlayer mcMMOTarget = UserManager.getPlayer(args[1]);
|
||||
|
||||
if (CommandUtils.checkPlayerExistence(sender, args[1], mcMMOTarget)) {
|
||||
return true;
|
||||
if (!CommandUtils.checkPlayerExistence(sender, args[1], mcMMOTarget)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Player target = mcMMOTarget.getPlayer();
|
||||
|
Reference in New Issue
Block a user