Skip to content

Commit

Permalink
Probably fix item script identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
Morphan1 committed Feb 18, 2016
1 parent 1dc3e23 commit 7cd08a5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -135,7 +135,7 @@ public void adjust(Mechanism mechanism) {
ItemMeta meta = item.getItemStack().getItemMeta();
dList lore = mechanism.getValue().asType(dList.class);
if (item.isItemscript()) {
lore.add(ItemScriptHelper.createItemScriptID(item.getScriptName()));
lore.add(0, ItemScriptHelper.createItemScriptID(item.getScriptName()));
}
for (int i = 0; i < lore.size(); i++) {
lore.set(i, EscapeTags.unEscape(lore.get(i)));
Expand Down

0 comments on commit 7cd08a5

Please sign in to comment.