package com.earth2me.essentials.commands; import com.earth2me.essentials.CommandSource; import com.earth2me.essentials.User; import org.bukkit.Server; import static com.earth2me.essentials.I18n.tl; public class Commandrtoggle extends EssentialsToggleCommand { public Commandrtoggle() { super("rtoggle", "essentials.rtoggle.others"); } @Override public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception { handleToggleWithArgs(server, user, args); } @Override public void run(final Server server, final CommandSource sender, final String commandLabel, final String[] args) throws Exception { toggleOtherPlayers(server, sender, args); } @Override protected void togglePlayer(final CommandSource sender, final User user, Boolean enabled) { if (enabled == null) { enabled = !user.isLastMessageReplyRecipient(); } user.setLastMessageReplyRecipient(enabled); user.sendMessage(!enabled ? tl("replyLastRecipientDisabled") : tl("replyLastRecipientEnabled")); if (!sender.isPlayer() || !user.getBase().equals(sender.getPlayer())) { sender.sendMessage(!enabled ? tl("replyLastRecipientDisabledFor", user.getDisplayName()) : tl("replyLastRecipientEnabledFor", user.getDisplayName())); } } }