Jump to content

ChampionAsh5357

Members
  • Posts

    3284
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by ChampionAsh5357

  1. Well yeah, mixins are applied manually and vanilla entries are added before mods are even loaded. This generally wouldn't work on Fabric too, but since you can initialize registry objects whenever you want, you typically don't encounter it. I can think of a way that involves getting the specific item list from the weighted random, and replacing the immutable list with another to append the entry that would need to be done after registries (so probably common setup), but I would recommend against it as there are probably some side effects I would be neglecting. SpawnPlacementRegisterEvent and check if the position is in a structure. See LocationPredicate
  2. I can point you to the Minecraft wiki as, like I said, a user playing your mod can simply disable the recipes and ore generation themselves through a datapack. If someone really wants to disable your stuff, there is already a way to do so without your intervention.
  3. So, there are two methods. You could do something like the shulker box and write the capability data to the correct location to the item and then just write it back on placement. Or, you can override `spawnAfterBreak` to modify the itemstack with the capability data of the block entity and then just write to block within blockitem with the other update tag methods.
  4. I can't seem to find anything, so you may just want to increase the amount of memory allocated to the game profile and see if that fixes the issue. You can search how to do that.
  5. Seems to be an issue with FTBUltimate which you could try to remove. However, it is more likely you are using an incorrect Forge version or modpack versions which is incompatible.
  6. Looking at the connection timeouts, it is likely that you have an improperly configured network that is only blocking traffic in one direction instead of both as it is trying to connect with ipv6 in one direction and using ipv4 in the other, preventing the connection from occurring. As such, you need to change the settings for your device or router to either block ipv6 traffic incoming and outgoing, or don't block either.
  7. Looking at the connection timeouts, it is likely that you have an improperly configured network that is only blocking traffic in one direction instead of both as it is trying to connect with ipv6 in one direction and using ipv4 in the other, preventing the connection from occurring. As such, you need to change the settings for your device or router to either block ipv6 traffic incoming and outgoing, or don't block either.
  8. Likely is an issue with scaffoldingpower.
  9. Error with modelfix it seems.
  10. You don't have enough memory allocated to the game. You can add more to the given configuration/profile quite easily. I would just recommend searching how to do this.
  11. In order to root out one of the more common issues, we'll need to see your hosts file. Here's the steps to getting this file. 1) Press the Win + R key on your keyboard. 2) Paste the following into the prompt that opens: notepad %windir%\system32\drivers\etc\hosts 3) Use Ctrl+A to select everything in the file, then Ctrl+C into the textbox to post to this thread.
  12. As 1.16.5 is not supported on this forum, I'll give you a simple answer. If you are loading up a version, the mods folder must only contain mods for that version. You can have multiple mods folders if you have different game directories for each profile configuration, but otherwise that must be it.
  13. Probably caused by this as you are attempting to run a 1.19.2 mod for 1.19.3.
  14. Try removing OptiFine and see if it works.
  15. Seems to be an issue with the configs. You might want to try deleting the files in the config folder in your game directory.
  16. In order to root out one of the more common issues, we'll need to see your hosts file. Here's the steps to getting this file. 1) Press the Win + R key on your keyboard. 2) Paste the following into the prompt that opens: notepad %windir%\system32\drivers\etc\hosts 3) Use Ctrl+A to select everything in the file, then Ctrl+C into the textbox to post to this thread.
  17. 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).
  18. Look at the arguments of DefferedRegister#register. It takes in the name and a supplier of the argument type.
  19. Don't. There's a number of issues that can occur when attempting to disable a particular feature. You should either leave the configuration up to the user through the datapack to disable specific recipes or ore generation. Alternatively if this is really necessary, you could use the config with a conditional on the given feature placement and the recipe conditions.
  20. We are not Fabric, ask wherever they provide support.
×
×
  • Create New...

Important Information

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