Removed debug :o ouch.

This commit is contained in:
Brianna 2019-06-20 02:10:31 -04:00
parent f0912f6352
commit 5d703e1168

View File

@ -33,7 +33,6 @@ public class EntityStackManager {
.replace(";", "");
if (!name.contains(":")) return null;
String split = name.split(":")[0];
System.out.println(customName);
int amount = Methods.isInt(split) ? Integer.parseInt(split) : 0;
addStack(entity, amount);
}