Added ability for panel description to be just a string.

This commit is contained in:
Tastybento 2018-01-27 15:58:15 -08:00
parent 970711ca63
commit 2b434bf93a

View File

@ -30,6 +30,11 @@ public class PanelItemBuilder {
return this;
}
public PanelItemBuilder description(String description2) {
this.description.add(description2);
return this;
}
public PanelItemBuilder glow(boolean glow) {
this.glow = glow;
return this;