noclear option in smite

This commit is contained in:
Elmon11 2021-03-21 13:57:24 +01:00 committed by GitHub
parent 2725857364
commit dc10c40578
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
@CommandPermissions(level = Rank.ADMIN, source = SourceType.BOTH)
@CommandParameters(description = "Someone being a little bitch? Smite them down...", usage = "/<command> <player> [reason] [-q]")
@CommandParameters(description = "Someone being a little bitch? Smite them down...", usage = "/<command> <player> [reason] [-nc | -q]")
public class Command_smite extends FreedomCommand
{
@ -54,7 +54,10 @@ public class Command_smite extends FreedomCommand
player.setGameMode(GameMode.SURVIVAL);
// Clear inventory
player.getInventory().clear();
if (!args[args.length - 1].equalsIgnoreCase("-nc"))
{
player.getInventory().clear();
}
// Strike with lightning effect
final Location targetPos = player.getLocation();
@ -122,4 +125,4 @@ public class Command_smite extends FreedomCommand
return true;
}
}
}