Jump to content

Sxlver_

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by Sxlver_

  1. I am assuming the constructor you're trying to call simply doesn't exist. You can see all available constructors by opening the ItemStack class in your IDE or checking the java docs (Click here) It appears you have to get an instance of the specific Item first and then pass it to the ItemStack constructor. Also, it seems like you can retrieve items by their id using Item#getItemById.
  2. I was intending to port it to 1.16.5 anyways, so yes. I am just porting my base to 1.16.5. All i am here for is to collect a few approaches on how you could achieve this.
  3. Hello folks, I'm fairly new to the forge api and client-sided modding in general. I am trying to add a option for the player which will prevent water/lava from rendering. Before (with the option toggled off) After (with the option toggled on) I am guessing that I would intercept some rendering event or is there a easier way on how to do this? Any hint is welcome.
  4. Hello folks, I'm fairly new to the forge api and client-sided modding in general. I am trying to add a option for the player which will prevent water/lava from rendering. Before (with the option toggled off) After (with the option toggled on) I am guessing that I would intercept some rendering event or is there a easier way on how to do this? Any hint is welcome.
×
×
  • Create New...

Important Information

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