Skip to content

Commit 13d2cae

Browse files
committed
polished some uis
1 parent 8f20b36 commit 13d2cae

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

Common/src/main/resources/assets/nt-rpg/Skills-Definitions.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Skills: [
2626
Id: "id:vitalize"
2727

2828
Skill-Types: [
29-
"ntrpg:healing"
29+
"ntrpg:heal"
3030
]
3131
Handler: "ntrpg:speed_boost"
3232
}

Implementations/Sponge/7/src/main/java/cz/neumimto/rpg/sponge/gui/GuiHelper.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -618,6 +618,7 @@ public static ItemStack toItemStack(ClassDefinition a) {
618618
}
619619

620620
}
621+
itemStack.offer(Keys.DISPLAY_NAME, Text.EMPTY);
621622
itemStack.offer(Keys.ITEM_LORE, lore);
622623
itemStack.offer(new InventoryCommandItemMenuData("ninfo class " + a.getName()));
623624
itemStack.offer(new MenuInventoryData(true));

Implementations/Sponge/7/src/main/java/cz/neumimto/rpg/sponge/gui/SpongeUIReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ protected ItemStack itemStringToItemStack(String[] split, Supplier<String> comma
8888
itemStack.offer(Keys.HIDE_ATTRIBUTES, true);
8989
itemStack.offer(Keys.HIDE_ENCHANTMENTS, true);
9090
itemStack.offer(Keys.HIDE_MISCELLANEOUS, true);
91-
91+
9292
if (dye != null) {
9393
itemStack.offer(Keys.DYE_COLOR, dye);
9494
}

0 commit comments

Comments
 (0)