Add more listeners and events to listen to

This commit is contained in:
Len
2022-08-28 00:53:00 +02:00
parent 3be53703be
commit 8d17848b6b
8 changed files with 237 additions and 120 deletions
@@ -174,7 +174,7 @@ public class ShopUtil {
if (m.equals(Material.TNT)) {
return "TNT";
}
String orig = m.toString().toLowerCase();
String orig = m.name().toLowerCase();
String[] splits = orig.split("_");
StringBuilder sb = new StringBuilder(orig.length());
int pos = 0;