Hello ladies and gentlemen !
I've recently started with Minecraft Modding - Moved from C#.
And ran into several issues. One of them is what I stated in the title.
About my setup
MDK: forge-1.16.5-36.1.0-mdk
IDE: IntelliJ IDEA 2020
Minecraft: obviously 1.16.5
package com.example.examplemod.common.items;
import ...;
public class ItemTest extends Item {
public ItemTest(Properties properties) {
super(properties);
}
// ERROR Method does not override method from its superclass
@Override
public void addInformation(ItemStack stack, World worldIn, List<ITextComponent> tooltip, ITooltipFlag flagIn) {
// ERROR Cannot resolve method 'addInformation' in 'Item'
super.addInformation(stack, worldIn, tooltip, flagIn);
tooltip.add(new StringTextComponent("Example tooltip"));
}
}
I checked the Source Code, surprisingly addInformation doesn't exist?
What is the alternative for that?
I've only found a getter for Tooltip
Best regards, Carbon.