mirror of
https://github.com/TotalFreedomMC/TF-LibsDisguises.git
synced 2025-02-11 11:40:29 +00:00
Add a larger range to the disguises in use graph
This commit is contained in:
parent
4aa724fd6f
commit
89c479879e
1 changed files with 8 additions and 1 deletions
|
@ -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";
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue