warjort
Members-
Posts
5420 -
Joined
-
Last visited
-
Days Won
175
Everything posted by warjort
-
Encrypted_ Modpack crashing after world generation
warjort replied to Zitruz's topic in Support & Bug Reports
I just tried loading this modpack and it works fine for me. Split up the file. It is the bottom part that is likely the most interesting. Find where it says "Preparing spawn area" and copy from there. -
Encrypted_ Modpack crashing after world generation
warjort replied to Zitruz's topic in Support & Bug Reports
No that's the latest.log it has no DEBUG information. -
Encrypted_ Modpack crashing after world generation
warjort replied to Zitruz's topic in Support & Bug Reports
This shows integrated dynamics trying to load a class that has a mixin defined for it (the problem is NOT integrated dynamics) The error message is not very informative, but it basically says there is something wrong with some java bytecode somewhere. Unfortunately, it doesn't say which class is being changed or which mixin is trying to change the class. The debug.log may have more information? -
Encrypted_ Modpack crashing after world generation
warjort replied to Zitruz's topic in Support & Bug Reports
You know this modpack is a beta/pre-release? You should report problems to the modpack author. But maybe this workaround is relevant to you? https://www.curseforge.com/minecraft/modpacks/encrypted_?comment=19 -
[] custome recipe dont work + ore_dictionary/tags
warjort replied to perromercenary00's topic in Modder Support
Recipes: https://forge.gemwire.uk/wiki/Recipes Tags: https://forge.gemwire.uk/wiki/Tags So if you follow the convention, your ingot should be in forge:ingots/steel or data/forge/tags/items/ingots/steel.json e.g. https://github.com/BluSunrize/ImmersiveEngineering/blob/1.18.2/src/generated/resources/data/forge/tags/items/ingots/steel.json as used in https://github.com/BluSunrize/ImmersiveEngineering/blob/86211504ad15b866e6df4685eb16c239cd6f16bb/src/generated/resources/data/immersiveengineering/recipes/crafting/gunpart_hammer.json -
Forge glitching out with replacing textures, check attatchment
warjort replied to Saffiz's topic in Support & Bug Reports
Speak to the mod author. They are likely not properly resetting their rendering context properly after drawing stuff, so it is leaking things into other people's drawing operations. -
Your issue is that Mojang changed the format for saving world gen structures within world saves in 1.18.2 This was to make structures more configurable in datapacks. While they have a way of updating vanilla structures, it can't fix modded structures - before 1.18.2 there was no standard format for this data. The only thing I can suggest is to talk the mod authors for the world gen mods that you have. They may know a way to fix the data?
-
Invalid Checksum error installing Forge client
warjort replied to Bazillion's topic in Support & Bug Reports
This is usually caused by having a very old version of java installed. Try updating it, or downloading a more recent release: https://adoptium.net/ It can also be caused by wrong configuration in your hosts file. c:\Windows\System32\drivers\etc\hosts or /etc/hosts on other OSes. -
See ServerPlayer.drop()
-
[1.19.1] Entity spawn broken in custom dimensions biome
warjort replied to Feroov's topic in Modder Support
Follow the logic from NaturalSpawner.spawnForChunk() then think about what happens with your configuration in that code, e.g. the MobCategory, SpawnState, LocalMobCapCalculator and the Biome's MobSpawnSettings. You can always use a debugger to see what is really happening. -
yes supplementaries not subsidiaries. 🙂
-
Looks like a bug in the moonlight and subsidiaries mods. They are trying to load client specific (graphics) classes on the server. You have their latest versions, so you will need to contact the mod author.
-
1.19 Ore Generation Configuration via ForgeConfig
warjort replied to Zetal911's topic in Modder Support
No you wouldn't reference the config at registration time, you would do it at runtime inside the Feature.place() The only reason I can see to do such a thing is if you want to change the values after the world is created. -
1.19 Ore Generation Configuration via ForgeConfig
warjort replied to Zetal911's topic in Modder Support
BiomeLoadingEvent is replaced with BiomeModifiers. https://forge.gemwire.uk/wiki/Biome_Modifiers If you really wanted to implement it the way you used to do it, you could make your own OreConfiguration/Feature implementation that gets its value from your config instead of being passed a number. -
This makes no sense. Event handlers are consumers of events (in their parameters), they don't create/supply them.
-
Forge and fabric are 2 different incompatible mod loaders. There is no way a fabric client can run a forge mod and similarly a forge server cannot run fabric mods. Whatever you think you are seeing in your description above is not what is happening. You either need to use a forge client and server with forge mods or the same for fabric, there is no mixing the two.
-
I can tell from the file names that a lot (maybe all?) are fabric mods not forge mods.
-
Your log shows it finding no mods. Make sure the mods are in: E:\Users\david\Downloads\1.19 Server\mods and that the file names of the mods end with .jar NOT .jar.zip which sometimes happens with broken browser plugins.
-
[1.18.2] how to check what item is on the ground
warjort replied to tobywig's topic in Modder Support
You really need to teach yourself how java works. This is very basic stuff. You need to be able to understand what the compiler is telling you. You can't just post the error message here and expect others to fix it for you. Especially when you don't even show the java code. Anyway (untested pseudo code): Entity entity = // from wherever if (entity instanceof ItemEntity itemEntity) { ItemStack itemStack = itemEntity.getItem(); if (itemStack.getItem() == Items.IRON_INGOT) { // Do stuff } } Usually it is better to define an item tag rather than hard wiring items in your code. Also note an ItemEntity contains an ItemStack of items, not just 1 item. -
The method get() is undefined for the type item
warjort replied to AwesomeStickguy's topic in Modder Support
The vanilla Items.MILK_BUCKET is an Item already, its not a Suppler<Item> like a RegistryObject. -
Medieval MC "The game crashed whilst starting integrated server"
warjort replied to IamSpoof's topic in Support & Bug Reports
There is an issue with a configuration file for BYG, ask the mod author how to fix it. -
https://johann.loefflmann.net/en/software/jarfix/index.html
-
Look at the signature of the BlockEntityType.Builder.of() method. The 2nd parameter is a Block, but you are trying to pass it a RegistryObject<Block> You get the block by using: ModBlocks.MAGICAL_WORKBENCH.get()
-
InfernalMobs in Forge 1.18.2 (40.1.54) gives me error
warjort replied to lluis's topic in Support & Bug Reports
I don't get it. Why do you keep asking here for help when you know which mod is the problem? There is nothing we can do to fix the problem, you need to contact the mod author.