-
Posts
3284 -
Joined
-
Last visited
-
Days Won
62
Everything posted by ChampionAsh5357
-
[1.19.2] Align Jigsaw structure to hill walls
ChampionAsh5357 replied to Skyriis's topic in Modder Support
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. -
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.
-
fml.modloading.dupemod please help
ChampionAsh5357 replied to yolo_wats_up's topic in Support & Bug Reports
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). -
Error Code 1: Duplicate mods found?
ChampionAsh5357 replied to Dulf's topic in Support & Bug Reports
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? -
org.spongepowered error but Mods are compatible
ChampionAsh5357 replied to Witted's topic in Support & Bug Reports
We are not Fabric, ask wherever they provide support. -
Sky Factory 3 server serverstart.bat wont work
ChampionAsh5357 replied to zappro74's topic in Support & Bug Reports
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). -
Dynamic trees is randomly crashing
ChampionAsh5357 replied to YeetACookie's topic in Support & Bug Reports
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). -
Bunch of missing mods.
-
1.19.2 modded server not working after changing port :(
ChampionAsh5357 replied to stufo's topic in Support & Bug Reports
Probably a server is already running on that port. -
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.
-
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.
-
bug in Tlskincape, does not change skin
ChampionAsh5357 replied to Tkerman's topic in Support & Bug Reports
Remove the mod, it seems to no longer exist and is technically illegal anyways.- 1 reply
-
- 1
-
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?
-
need help figuring out this crash report
ChampionAsh5357 replied to marxsayshi's topic in Support & Bug Reports
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. -
minecraft1.18.1 move the entity in the direction it is facing
ChampionAsh5357 replied to smile0621's topic in Modder Support
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. -
[1.19.2] Align Jigsaw structure to hill walls
ChampionAsh5357 replied to Skyriis's topic in Modder Support
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. -
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.