Everything posted by warjort
-
server crashes on startup while it was running fine just a minute ago
On of your config files is invalid/corrupted. You can find it the in the config subfolder. If you don't have a backup, delete it and it will be recreated with default values.
-
I'm having an issue with Minecraft loading up properly with my new modpack that I created. I'll put the log below.
You can't have both jei (just enough items) and rei (roughly enough items).
-
Every time I try to load up a new world, this happens: The game crashed whilst ticking entity Error: java.lang.NullPointerExcept
Looks like an issue with canary. Check you have the latest version then contact the mod author.
-
I have this problem on forge 1.18.2 40.2.0
Issue with chunk animator. Check you have the latest version the contact the mod author.
-
[SOLVED] [1.19.2] Renderer With Incorrect combinedLightIn
Not really my area of expertise, but that value is the calculated lighting value of your block. Your crucible has noOcclusion which allows light to pass through it: https://github.com/NovaMachina-Mods/ExNihiloSequentia/blob/cb9490413242e4480551433299127e9066243a7a/src/main/java/novamachina/exnihilosequentia/common/block/crucibles/WoodCrucibleBlock.java#L24 Your barrel does not: https://github.com/NovaMachina-Mods/ExNihiloSequentia/blob/cb9490413242e4480551433299127e9066243a7a/src/main/java/novamachina/exnihilosequentia/common/block/barrels/WoodBarrelBlock.java#L23 so it is probably not letting light into your block according to the shape? Look at how ModelBlockRenderer.tesselateWithoutAO uses LevelRenderer.getLightColor() of the neighbouring block/side as the light level when light cannot enter the block.
-
Trying to start game Error 1
You are trying to use the 1.19.2 version of flywheel with minecraft 1.19.3 There is no version of flywheel for 1.19.3 according to curseforge: https://www.curseforge.com/minecraft/mc-mods/flywheel/files/all?filter-game-version=1738749986%3a73407
-
Pls help modpack crush
Issue with valhelsia structures. Probably a conflict with another mod (optifine?) Check you have the latest version then contact the mod author.
-
Minecraft not launching when using 1.18+ and 1.19+ mods
Issue with moziesmobs, check you have the latest version then contact the mod author.
-
org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
Issue with the identity mod. Maybe a conflict with another mod? Check you have the latest version then contact the mod author.
-
The game crash when i start it
The error says you are missing or have the wrong version of geckolib for allthemodium. Check you have the latest versions then contact the mod authors.
-
invalid dist DEDICATED_SERVER
The undefeatables mod is trying to load client only classes on the server. Check you have the latest version then contact the mod author.
-
I have a problem when I try to join a friend's server
https://github.com/Asek3/Oculus/issues/257
-
Forge exit code 1
if that is the full log, post a link to the launcher_log.txt before restarting the launcher.
-
Game crashes when loading into the Otherside (Deeper and Darker 1.19.2)
Looks like deeperdarker wants a different version of geckolib3. Check you have the latest versions then contact the mod author.
-
[1.19.3] Configurable Ore Generation
I assume you are talking about the "count" placement modifier? Typically placed features are configured with multiple placement modifiers one of which is some form "count". You can write your own PlacementModifier (and register it) that takes its value(s) from your configuration file instead of the numbers in the json file. In 1.19.3 Registries.PLACEMENT_MODIFER_TYPE is the registry key. This approach does at least mean if the end user/mod pack developer doesn't like your way of configuring the ore generation they can create a datapack and replace your placement modifier with their own. Which is Mojang's intended way to do it.
-
One of more entry values did not copy to the correct id. Check log for details! Can't load game after attempting to create mob
It never ceases to amaze me how people overrate our psychic abilities. 🙂 I downloaded and ran the mod for myself. The relevant error in the log you don't show is: I've never seen that error before. But since minecraft:pig is minecraft's way of saying "not found" for entity types there must be something wrong with your EntityType registration. After some headscratching I noticed you are doing it twice. https://github.com/Coldthunder4/AGuardMod/blob/2065bd6cfeffff3cf099a3fb21c3fa504c29f5f0/src/main/java/net/coldthunder4/cellguard/CellGuard.java#L30 https://github.com/Coldthunder4/AGuardMod/blob/2065bd6cfeffff3cf099a3fb21c3fa504c29f5f0/src/main/java/net/coldthunder4/cellguard/CellGuard.java#L36
-
Method that gets called once when an item is created?
Capabilities have some support for initializing data. See ItemStack.forgeInit() and Item.initCapabilities()
-
Method that gets called once when an item is created?
There is no such method. ItemStacks are created by the game all the time for many reasons. e.g. copying, deserializing from the disk or network, etc. If this is another part of your NBT questions, NBT is meant to be "optional" data. If your data is not present you need to provide a default value.
-
One of more entry values did not copy to the correct id. Check log for details! Can't load game after attempting to create mob
- [1.19.3] Configurable Ore Generation
Those json files are configuration files. If the user wants to modify them they can use a datapack. If you really want to continue to do this, just search this forum. This pointless "anti-pattern" has been discussed many times before in various forms. Configuration files for configuration files? 🙂- [1.19.2] Shapes net.minecraft.world.phys.shapes.BooleanOp.class, make cubic shape whit a hole inside
Look at what the AbstractCauldron or HopperBlock does. Or in general: Shapes.join(original, cutout, ONLY_FIRST); i.e. start with "original" and only takes the parts that are in that shape but not in "cutout".- minecraft crash when login to a server or a world, exit error code either 1 or -1073740940
Maybe this problem? https://forums.minecraftforge.net/topic/119518-exit-code-1073740940/#comment-524102- [1.19.2] Container Data Screen
i.e. have you widget take a Supplier<Integer> instead of an integer.- [1.19.2] Container Data Screen
My question was rhetorical. What values do you expect your widget to display if you only give it the values once in init ?- Added mods to ATM8 cant figure out whats crashing.
Issue with ae2wtlib, probably a conflict with another mod? Check you have the latest version the contact the mod author or modpack author. - [1.19.3] Configurable Ore Generation
Important Information
By using this site, you agree to our Terms of Use.