mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-18 05:16:12 +00:00
Lemon at least make sure it compiles
This commit is contained in:
parent
100e155fe0
commit
435898550b
@ -107,7 +107,7 @@ public class Command_list extends FreedomCommand
|
|||||||
}
|
}
|
||||||
|
|
||||||
final Displayable display = plugin.rm.getDisplay(p);
|
final Displayable display = plugin.rm.getDisplay(p);
|
||||||
if (!senderIsConsole && plugin.al.isAdmin(playerSender) && plugin.al.getAdmin(playerSender).getOldAdminMode())
|
if (!senderIsConsole && plugin.al.isAdmin(playerSender) && plugin.al.getAdmin(playerSender).getOldTags())
|
||||||
{
|
{
|
||||||
n.add(getOldPrefix(display) + p.getName());
|
n.add(getOldPrefix(display) + p.getName());
|
||||||
}
|
}
|
||||||
|
@ -1,26 +0,0 @@
|
|||||||
package me.totalfreedom.totalfreedommod.command;
|
|
||||||
|
|
||||||
import me.totalfreedom.totalfreedommod.admin.Admin;
|
|
||||||
import me.totalfreedom.totalfreedommod.rank.Rank;
|
|
||||||
import org.bukkit.command.Command;
|
|
||||||
import org.bukkit.command.CommandSender;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
|
|
||||||
@CommandPermissions(level = Rank.SUPER_ADMIN, source = SourceType.ONLY_IN_GAME)
|
|
||||||
@CommandParameters(description = "Toggle old admin formatting", usage = "/<command>", aliases = "oam")
|
|
||||||
public class Command_oldadminmode extends FreedomCommand
|
|
||||||
{
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
|
||||||
{
|
|
||||||
|
|
||||||
Admin admin = plugin.al.getAdmin(playerSender);
|
|
||||||
admin.setOldAdminMode(!admin.getOldAdminMode());
|
|
||||||
plugin.al.save();
|
|
||||||
plugin.al.updateTables();
|
|
||||||
msg("Old admin mode has been " + (admin.getOldAdminMode() ? "enabled." : "disabled."));
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user