Jump to content

ChampionAsh5357

Members
  • Posts

    3284
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by ChampionAsh5357

  1. Apologies for the poor explanation on my part. If you want to use a feature, you can't easily use a template. You would need to get it through the StructureTemplateManager through the ServerLevel through the WorldGenLevel, load the data, and then generate it. TelepathicGrunt does have a tutorial on creating a custom structure through which you could use to add an extra spawn check if there is air around you. Though, imo, you're still better off with a feature since you should be able to more safely check whether you can replace the block there.
  2. Look at some vanilla examples like the brewing stand, hopper, crafting table, and refer to the docs. Ask more specific questions when you get stuck towards your own implementation.
  3. The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.3 (Latest), 1.19.2, and 1.18.2 (LTS).
  4. Please provide the entire debug.log from the logs folder in the game directory via a gist or pastebin.
  5. The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.3 (Latest), 1.19.2, and 1.18.2 (LTS).
  6. Please provide the entire debug.log in a gist or a pastebin. How can we know what mods you are playing if they are never shown?
  7. The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.3 (Latest), 1.19.2, and 1.18.2 (LTS).
  8. The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.3 (Latest), 1.19.2, and 1.18.2 (LTS).
  9. If it's the same error, then you are not running Java 17. You can verify this by running `java --version` in the console. If it is the fact you are, put in the new debug.log.
  10. The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.3 (Latest), 1.19.2, and 1.18.2 (LTS).
  11. Would you try again now to verify if that is the case? My guess is that it takes a while for curse maven to update and you seem to have tried it immediately after upload.
  12. Remove the mod, it seems to no longer exist and is technically illegal anyways.
  13. It isn't if you're using the event register method, which you are. The failed to load description means it couldn't open the particle json or an error occurred while reading it. Do you have a particle json with the textures in the correct location and you are currently not viewing the file in a text editor of some sort?
  14. Please provide the entire debug.log from the logs folder in the game directory. This is only a partial one.
  15. Since it's a timeout, probably one of the mods is hanging when that happens. It's difficult to tell what mod that is, but you could either just split the mods, test, and keep splitting until you find the erroring mod, or you could profile the game (probably with spark) during the time you open the chest to see which mod is specifically causing the issue.
  16. I don't know what Trident v2 try is but it could be conflicting with better tridents if the mod id is the same.
  17. On the server, Entity#addDeltaMovement and then setting Entity#hurtMarked to true. On the client, you just need to do the first one. You can get the direction from the head's look vector.
  18. So, after a quick read up, you're better of making your structure a feature to generate. The only terrain adaption which makes sense for you is the bury one which would fail for air. You could attempt to set the `project_start_to_heightmap` field to the world surface and see it that gives a better chance for it to spawn connected to the air. Otherwise, you would have to generate the pieces manually similar to how buried treasure works if you wanted to keep a structure or a custom feature which could then correctly check the sides to see if it is touching air.
  19. Please show the debug.log from the logs folder in your game directory and server.
  20. You could try pointing the java runtime in the game profile to the correct version on your machine. Go to installations, edit, more options, and change the java executable to point to your version of java. Alternatively, you could try redownloading the whole launcher since it seems it may have failed trying to download the runtime to run the game.
×
×
  • Create New...

Important Information

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