mirror of
https://gitlab.com/phoenix-dvpmt/mmoitems.git
synced 2025-01-03 06:37:47 +01:00
Fixed item generation error
This commit is contained in:
parent
4176ff0b5b
commit
464d4784e5
@ -210,11 +210,12 @@ public class LoreBuilder {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Apply tooltip bottom
|
// Apply tooltip bottom
|
||||||
if (tooltip != null)
|
if (tooltip != null) {
|
||||||
lore.add(tooltip.getBottom() + effectiveSuffix);
|
lore.add(tooltip.getBottom() + effectiveSuffix);
|
||||||
|
|
||||||
// Apply tooltip lore header
|
// Apply tooltip lore header
|
||||||
if (tooltip.getLoreHeader() != null) lore.addAll(0, tooltip.getLoreHeader());
|
if (tooltip.getLoreHeader() != null) lore.addAll(0, tooltip.getLoreHeader());
|
||||||
|
}
|
||||||
|
|
||||||
lore.addAll(end);
|
lore.addAll(end);
|
||||||
return lore;
|
return lore;
|
||||||
|
Loading…
Reference in New Issue
Block a user