Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/06/24 in all areas

  1. Brooo you are in 1.12 why do you made mods on 1.12 in 2024 anyway i have similar issue in 1.20.4 in mi case to fix i have to make the BlockEntity to manually call on blockEntityChanged() to inform the world the block entity has change and need to be saved // ########## ########## ########## ########## @Override protected void saveAdditional( CompoundTag nbt ){ //System.out.println("\n##saveAdditional(), " + this.getBlockPos() ); nbt.put("inventory", itemhandler.serializeNBT() ); nbt.putInt("progress", this.progress ); super.saveAdditional( nbt ); //System.out.println(NbtUtils.prettyPrint(nbt)); this.getLevel().blockEntityChanged(this.getBlockPos()); //<---------- } but this is in 1.20.4 may theres something equivalent in 1.12
    1 point
  2. 1 point
  3. it worked thank you, i just had to delete java 22 through apps & features
    1 point
  4. It works fine now. thank you
    1 point
  5. Both screenshots showing Java 22 Remove Java 22 and make sure the server is using Java 17
    1 point
  6. I can confirm a similar error when trying to set up a 1.19.2 modding environment in Eclipse; something is definitely cached that doesn't do well when the environment is edited. I solved it similarly to how you did, by simply restarting from the ground with a different project in a different version.
    1 point
×
×
  • Create New...

Important Information

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