Fixed pom, added tprandom, admins can now kick other admins (#21)

* Fixed pom, added tprandom, admins can now kick other admins

* went too fast

* im mental
This commit is contained in:
Seth
2018-01-14 14:53:05 -07:00
committed by Lemon
parent 7c3ea836e7
commit 9b6394c8c6
4 changed files with 62 additions and 37 deletions

View File

@ -420,4 +420,11 @@ public class FUtil
String packageName = Bukkit.getServer().getClass().getPackage().getName();
return packageName.substring(packageName.lastIndexOf('.') + 1);
}
public static int random(int min, int max)
{
int range = max - min + 1;
int value = (int) (Math.random() * range) + min;
return value;
}
}