mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-27 01:05:38 +00:00
Force the count to be zero if the value is negative (FS-216) (#56)
This commit is contained in:
parent
6073712fdf
commit
f240a15af3
@ -101,7 +101,8 @@ public class Command_list extends FreedomCommand
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
onlineStats.append(ChatColor.BLUE).append("There are ").append(ChatColor.RED).append(server.getOnlinePlayers().size() - AdminList.vanished.size())
|
int count = server.getOnlinePlayers().size() - AdminList.vanished.size();
|
||||||
|
onlineStats.append(ChatColor.BLUE).append("There are ").append(ChatColor.RED).append(count < 0 ? 0 : count)
|
||||||
.append(ChatColor.BLUE)
|
.append(ChatColor.BLUE)
|
||||||
.append(" out of a maximum ")
|
.append(" out of a maximum ")
|
||||||
.append(ChatColor.RED)
|
.append(ChatColor.RED)
|
||||||
|
@ -88,6 +88,8 @@ public class Module_list extends HTTPDModule
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int count = server.getOnlinePlayers().size() - AdminList.vanished.size();
|
||||||
|
|
||||||
// for future refernce - any multi-worded ranks are to be delimited by underscores in the json; eg. senior_admins
|
// for future refernce - any multi-worded ranks are to be delimited by underscores in the json; eg. senior_admins
|
||||||
responseObject.put("owners", owners);
|
responseObject.put("owners", owners);
|
||||||
responseObject.put("executives", executives);
|
responseObject.put("executives", executives);
|
||||||
@ -97,7 +99,7 @@ public class Module_list extends HTTPDModule
|
|||||||
responseObject.put("master_builders", masterbuilders);
|
responseObject.put("master_builders", masterbuilders);
|
||||||
responseObject.put("operators", operators);
|
responseObject.put("operators", operators);
|
||||||
responseObject.put("imposters", imposters);
|
responseObject.put("imposters", imposters);
|
||||||
responseObject.put("online", server.getOnlinePlayers().size() - AdminList.vanished.size());
|
responseObject.put("online", count < 0 ? 0 : count);
|
||||||
responseObject.put("max", server.getMaxPlayers());
|
responseObject.put("max", server.getMaxPlayers());
|
||||||
|
|
||||||
final NanoHTTPD.Response response = new NanoHTTPD.Response(NanoHTTPD.Response.Status.OK, NanoHTTPD.MIME_JSON, responseObject.toString());
|
final NanoHTTPD.Response response = new NanoHTTPD.Response(NanoHTTPD.Response.Status.OK, NanoHTTPD.MIME_JSON, responseObject.toString());
|
||||||
@ -110,7 +112,8 @@ public class Module_list extends HTTPDModule
|
|||||||
|
|
||||||
final Collection<? extends Player> onlinePlayers = Bukkit.getOnlinePlayers();
|
final Collection<? extends Player> onlinePlayers = Bukkit.getOnlinePlayers();
|
||||||
|
|
||||||
body.append("<p>There are ").append(onlinePlayers.size() - AdminList.vanished.size()).append("/")
|
int count = onlinePlayers.size() - AdminList.vanished.size();
|
||||||
|
body.append("<p>There are ").append(count < 0 ? 0 : count).append("/")
|
||||||
.append(Bukkit.getMaxPlayers()).append(" players online:</p>\r\n");
|
.append(Bukkit.getMaxPlayers()).append(" players online:</p>\r\n");
|
||||||
|
|
||||||
body.append("<ul>\r\n");
|
body.append("<ul>\r\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user