mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-16 20:36:12 +00:00
33 lines
1.2 KiB
Java
33 lines
1.2 KiB
Java
|
package me.totalfreedom.totalfreedommod.command;
|
||
|
|
||
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
||
|
import org.bukkit.command.Command;
|
||
|
import org.bukkit.command.CommandSender;
|
||
|
import org.bukkit.entity.Player;
|
||
|
import org.bukkit.potion.PotionEffect;
|
||
|
import org.bukkit.potion.PotionEffectType;
|
||
|
|
||
|
@CommandPermissions(level = Rank.OP, source = SourceType.ONLY_IN_GAME)
|
||
|
@CommandParameters(description = "Toggles the glowing outline effect because y'all lazy as fuck", usage = "/<command>")
|
||
|
public class Command_glow extends FreedomCommand
|
||
|
{
|
||
|
|
||
|
@Override
|
||
|
public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
||
|
{
|
||
|
boolean glowing = false;
|
||
|
if (playerSender.getPotionEffect(PotionEffectType.GLOWING) != null)
|
||
|
{
|
||
|
playerSender.removePotionEffect(PotionEffectType.GLOWING);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
PotionEffect glow = new PotionEffect(PotionEffectType.GLOWING, 1000000, 1, false, false);
|
||
|
playerSender.addPotionEffect(glow);
|
||
|
glowing = true;
|
||
|
}
|
||
|
msg("You " + (glowing ? "are now" : "no longer") + " glowing.");
|
||
|
return true;
|
||
|
}
|
||
|
}
|