mirror of
https://github.com/TotalFreedomMC/TotalFreedomMod.git
synced 2025-07-24 22:44:09 +00:00
Bring changes from the official repo over to here
This commit is contained in:
parent
6647088429
commit
b8f4119924
3 changed files with 9 additions and 3 deletions
|
@ -200,6 +200,7 @@ public class Command_saconfig extends FreedomCommand
|
|||
{
|
||||
admin.setName(player.getName());
|
||||
admin.addIp(Ips.getIp(player));
|
||||
admin.getName().isEmpty();
|
||||
}
|
||||
|
||||
// Handle master builders
|
||||
|
|
|
@ -25,6 +25,7 @@ public class Module_players extends HTTPDModule
|
|||
final JSONObject responseObject = new JSONObject();
|
||||
|
||||
final JSONArray players = new JSONArray();
|
||||
final JSONArray onlineadmins = new JSONArray();
|
||||
final JSONArray masterbuilders = new JSONArray();
|
||||
final JSONArray superadmins = new JSONArray();
|
||||
final JSONArray telnetadmins = new JSONArray();
|
||||
|
@ -35,6 +36,10 @@ public class Module_players extends HTTPDModule
|
|||
for (Player player : Bukkit.getOnlinePlayers())
|
||||
{
|
||||
players.add(player.getName());
|
||||
if (plugin.al.isAdmin(player) && !plugin.al.isAdminImpostor(player))
|
||||
{
|
||||
onlineadmins.add(player.getName());
|
||||
}
|
||||
}
|
||||
|
||||
// Admins
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue