From 89c479879e0763a0ca98f5688e5c4e19a0dea443 Mon Sep 17 00:00:00 2001 From: libraryaddict Date: Tue, 17 Jul 2018 08:45:15 +1200 Subject: [PATCH] Add a larger range to the disguises in use graph --- src/me/libraryaddict/disguise/LibsDisguises.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/me/libraryaddict/disguise/LibsDisguises.java b/src/me/libraryaddict/disguise/LibsDisguises.java index 91fe33c1..024dbdc7 100644 --- a/src/me/libraryaddict/disguise/LibsDisguises.java +++ b/src/me/libraryaddict/disguise/LibsDisguises.java @@ -172,7 +172,14 @@ public class LibsDisguises extends JavaPlugin { return "6 to 15"; else if (disgs <= 30) return "16 to 30"; - return "More than 30"; + else if (disgs <= 60) + return "30 to 60"; + else if (disgs <= 100) + return "60 to 100"; + else if (disgs <= 200) + return "100 to 200"; + + return "More than 200"; } });