Jump to content

QuantumSoul

Members
  • Posts

    82
  • Joined

  • Last visited

Everything posted by QuantumSoul

  1. Should I just change the Dependencies { minecraft '' } ? EDIT: I did a new project folder and it worked
  2. I tried but it's not in the list. I think it's because of my forge version Oops you're right
  3. OnBlockActivated: The Override is underlined @Override public void onBlockActivated(BlockState state, World worldIn, BlockPos pos, PlayerEntity player) {} OnEntityCollison: The player never moves @Override public void onEntityCollision(BlockState state, World worldIn, BlockPos pos, Entity entityIn) { entityIn.setMotion(0, 10, 0); } I'm using forge 31.1.1
  4. I already checked those links, they say you should still override them but I can't override onBlockActivated because it's not in my IDE anymore. And I did override onEntityCollision but it's never called.
  5. Hi, I wanted to override Block#onBlockActivated Block#onEntityCollision But the first one doesn't exist anymore and the second one is deprecated and never called What should I do ?
  6. Hi, I overrided the addinformation class and I got that @Override public void addInformation(ItemStack stack, @Nullable World worldIn, List<ITextComponent> tooltip, ITooltipFlag flagIn) { tooltip.add(??); } How do I make an ITextCompent taking text from the right lang json ? Have a nice day.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.