Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/26/19 in all areas

  1. Take a look at the first line in your method: return super.onItemRightClick(worldIn, playerIn, handIn); This is a return statement, which means that the method is ended here and all statements after can't be reached (Exactly what your IDE is telling you) You have to remove this statement and add your return statement at the end of the method. There you want to return a new ActionResult using ActionResult#newResult Nice Greetings TechMage
    1 point
  2. Change EntityPlayer#noClip to true.
    1 point
  3. This was flagged up as an issue on the MinecraftForge GitHub but unfortunately it hasn't gone anywhere yet.
    1 point
  4. I had to make some slight modifications to this to make it work, but ultimately this did work for me. Thank you so much to all of you guys who helped me with this
    1 point
×
×
  • Create New...

Important Information

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