Fixed OddItem integration

This commit is contained in:
Acrobot 2012-11-28 21:31:03 +01:00
parent 817fdeae3f
commit 0f0fd3b60e
1 changed files with 4 additions and 0 deletions

View File

@ -210,6 +210,10 @@ public class SignChange implements Listener {
}
private static String formatItemLine(String line, ItemStack item) {
if (MaterialUtil.Odd.getFromString(line) != null) {
return line;
}
String formatted, data = "";
String[] split = line.split(":|-", 2);