Skip to content

Commit

Permalink
Add apostrophes
Browse files Browse the repository at this point in the history
  • Loading branch information
DSH105 committed Feb 22, 2014
1 parent a8d541c commit 0f2b0af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public void setDefaults() {
set("petSelector.menu.slot-" + friendlySlot + ".petType", icon.getPetType() == null ? "" : icon.getPetType().toString());
set("petSelector.menu.slot-" + friendlySlot + ".materialId", icon.getMaterialId());
set("petSelector.menu.slot-" + friendlySlot + ".materialData", icon.getMaterialData());
set("petSelector.menu.slot-" + friendlySlot + ".name", icon.getName() == null ? "" : icon.getName());
set("petSelector.menu.slot-" + friendlySlot + ".name", icon.getName() == null ? "" : "'" + icon.getName() + "'");
set("petSelector.menu.slot-" + friendlySlot + ".lore", icon.getLore() == null || icon.getLore().length <= 0 ? "" : icon.getLore());
}
}
Expand Down

0 comments on commit 0f2b0af

Please sign in to comment.