Everything posted by warjort
-
Help with tools and player effects
Or you can just override the DiggerItem.getDestroySpeed() in your Pickaxe item class.
-
Getting Error While Updating Mod From 1.16.5 to 1.18.2
FOVModifierEvent?
-
ATM8 on Polymc or MultiMC
Issue with the modelfix mod. Check you have the latest version then contact the mod author.
-
The game crashed whilst rendering overlay - Error: java.lang.IllegalArgumentException: Failed to create player model for default
Issue with the midnightlib mod Check you have the latest version then contact the mod author.
-
Forge doesn't load after installing it
You have a 1.16.5 mod installed in 1.19.2 You are missing the above mods or have the wrong versions.
-
Forge doesn't load after installing it
You need to post link to your logs/debug.log so we can see the error.
-
The Game Crashed Whilst Rendering Overlay (BakedQuad)
https://github.com/sp614x/optifine/issues/7127
-
Getting Player UUID from Player Name (1.18.2)
That code is complete rubbish. You are handling a packet serverside by accessing and using client api? https://forge.gemwire.uk/wiki/Sides Every entity (including players) has a UUID. Entity.getUUID() This is intended for persistent storage across game restarts. And allows you to refer to entities/players that are not loaded in the game. If you want a server to tell a client how to get an entity, you will find Entity.getId() more useful. You use Level.getEntity() client side to retrieve the entity with that id. Assuming the client knows about that entity, i.e. it is in the client's currently loaded level/chunks.
-
Grass not dropping modded item, please help!
You need to make your mod load after forge to modify the vanilla datapack. By specifying an ordering in your mods.toml https://forge.gemwire.uk/wiki/Mods.toml But doing that is a bad idea. You will conflict with other mods or modpack configuration doing the same thing. You should use global loot modifiers instead. https://forge.gemwire.uk/wiki/Dynamic_Loot_Modification
-
Registry Object not present when registering BlockItem.
You are trying to access the unregistered block during classloading (static initialisation). You need to understand how deferred references work (Suppliers, RegistryObject, etc.) and when you can call get() This is an important pattern within forge/minecraft. Something like: // Pass the supplier, don't try to get the unregistered block yet public static final RegistryObject<Item> BARLEY_SEEDS = registerSeed("barley_seeds", ModBlocks.BARLEY); // Method accepts the supplier private static RegistryObject<Item> registerSeed(String pSeed, RegistryObject<Block> pCrop) { // Retrieve the block object at registration time return ITEMS.register(pSeed, () -> new SeedBlockItem(pCrop.get())); }
-
Exception in server tick loop
You need to post a link to your logs/debug.log Also did you try without optifine? The optifine download page says the version of optifine you are using is for forge 43, but you have forge 42
-
Changing ItemStack but player inventory not updating
Maybe I am misunderstanding the problem, but the code in that github repository works fine for me? You are referring to the useOn() block code?
-
1.18.2 Modpack server isn't launching
Use java 17, mixin doesn't support java 19
-
Changing ItemStack but player inventory not updating
Except for the double checking of whether it is on the server, I don't see anything wrong with that code. I tried it and it works properly for me. You need to put an example on github that reproduces the problem so we can see everything in context and try it for ourselves if necessary.
-
1.18.2-forge-40.1.14 always crashing on exit code 1.
There's no error in that log, but the last line shows it loading the forge config file. It's likely there is a problem with this file. Try deleting it so it gets recreated with default values. If that doesn't fix the problem, post a link to the launcher_log.txt (directly after the crash without restarting the launcher).
-
mods require newer forge version than posted versions
Are you sure 40.1.9 isn't a minimum requirement? i.e. any version after 40.1.9 will do.
-
The game crashed whilst initializing game Error: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerErr
Conflict between rubidium and chunk animator. Check you have the latest versions then contact the mod authors.
-
Minecraft Crash
Download the preview version of optifine. Their download page says which versions of forge each download is compatible with.
-
Can someone help me find out what is wrong please?
Jar name is in the error message
-
Error:org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
Looks like a conflict between oculus and iris. Check you have the latest versions the contact the mod authors.
-
Can someone help me find out what is wrong please?
Looks like an issue with the midnight hats mod. Check you have the latest version then contact the mod author.
-
My game crashes immediately
Looks like you don't have the mrcrayfish framework mod?
-
How to add a mod dependency which is in my computer?
https://forge.gemwire.uk/wiki/Dependencies#Flat_Directory_Repositories
-
i need help making my server work
Issue with legendary tooltips mod trying to load client only classes on the server. Check you have the latest version then contact the mod author.
-
Forge With Mods Crash When Adding a Texture Pack
I suggest you contact whoever wrote the texture pack. The first error in your log is Which suggests something in that texture pack is breaking the class initialisation for minecraft's texture class Or it is conflicting with a mod that changes that code. Since you don't post a link to your debug.log we can't see which mods are modifying that code. The log does not contain an error to explain why it can't load that class. So, we can't see the root cause. There is this warning just before, which may or may not be relevant? Assuming there is no fundamental problem with the resource pack (e.g. it is for a different version of minecraft) I suspect the only way you will find the conflicting mod is to experiment with removing mods until the problem goes away.
IPS spam blocked by CleanTalk.