Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public synchronized void load() {
continue;
}

String[] parts = line.split(",");
String[] parts = line.split("#");
ItemStack item = ItemUtil.getItem(parts[0].replace(" ", ""));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this is the best character to use at the very least. # is a comment character if I recall correctly. Also, this breaks backwards compatibility with various kits, does it not?

I'm pretty sure just from looking at the code here, kits follow their own syntax, so I think the real issues is enchants were never properly implemented for kits.

EDIT: I take that back, it's setting item quantity, and that seems to be all.


if (item == null) {
Expand Down