Skip to content

Commit bec644f

Browse files
Uhh
If you set to "false" in "colorized" parameters it colorizes.. fixed
1 parent 362b28d commit bec644f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/me/flame/menus/items/ItemEditor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public ItemEditor setLore(boolean colorized, String... lore) {
9696
* @return the builder for chaining
9797
*/
9898
public ItemEditor setLore(boolean colorized, List<String> lore) {
99-
if (!colorized) return this.setLore(lore);
99+
if (colorized) return this.setLore(lore);
100100
this.meta.setLore(lore);
101101
return this;
102102
}

0 commit comments

Comments
 (0)