Support for epic spawners.

This commit is contained in:
Brianna O'Keefe 2019-02-18 15:27:42 -05:00
parent b1a58e431a
commit 7b0f88d13a

View File

@ -78,6 +78,7 @@ public class KitItem {
for (String s : kitOptions) {
if (s.equals("")) continue;
String[] sSplit = s.split(":", 2);
if (sSplit.length != 2) return line;
String option = sSplit[0].toLowerCase();
String value = sSplit[1].trim();