Skip to content

Commit

Permalink
fix: Fixed class armour material tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
WinDanesz committed Aug 31, 2022
1 parent 6572904 commit e6de558
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void addInformation(ItemStack itemstack, World world, List<String> toolti
super.addInformation(itemstack,world,tooltip, advanced);

if (GameSettings.isKeyDown(Minecraft.getMinecraft().gameSettings.keyBindSneak)) {
AncientSpellcraft.proxy.addMultiLineDescription(tooltip, I18n.format("tooltip" + this.getRegistryName() + ".more_info"));
AncientSpellcraft.proxy.addMultiLineDescription(tooltip, I18n.format("tooltip." + this.getRegistryName() + ".more_info"));
} else {
tooltip.add(I18n.format("tooltip.ancientspellcraft:more_info"));
}
Expand Down

0 comments on commit e6de558

Please sign in to comment.