-
Posts
3284 -
Joined
-
Last visited
-
Days Won
62
Everything posted by ChampionAsh5357
-
[1.19.4] limit stack size to 1 for Item and for Block
ChampionAsh5357 replied to perromercenary00's topic in Modder Support
You're supposed to do this with the `stacksTo` item property. -
Exception in thread "main" java.lang.ClassCastException
ChampionAsh5357 replied to stunni's topic in ForgeGradle
Then I would imagine that the cast exception comes from an incorrect JDK since I believe 1.8 used Java 7 iirc. Regardless, 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.4 (Latest) and 1.18.2 (LTS). -
It's an nbt, so whatever the serialized nbt is. You can probably search it on the Internet. As for the helpers, there is EnchantmentUtils iirc. Inside CreativeModeTabEvent$BuildContents. Make sure to check the tab you are adding to via #getTab.
-
Ignoring the mismatched format, this doesn't really explain anything about what is needed. First, you have a bunch of random classes which you don't define: ExampleEntityModel, the layer location, model layers, etc. Even if they are not relevant, you should just hide them behind a `//...` so they don't detract from your main point. For example, what about registering the layer definitions? the entity renderer? Anything that is not explained should be mentioned to use the same method as usual. You should also explain why adding those two layers would do what you needed. Additionally, you need to explain when a different model layer should be used, since not all mobs will have the exact same dimensions as the player (e.g., piglin). This will crash, it needs a semicolon. This is already added for HumanoidMobRenderer, so it is redundant. This will crash, you need to pass in a ModelManager from the context. Additionally, the type parameter for HumanoidModel should be inferred and not just removed.
-
[1.19.2] Can anyone help me with my modpack crashes?
ChampionAsh5357 replied to Kyreous's topic in Support & Bug Reports
I just look in the errors for the name of a mod and my first instinct is to remove it. There are a few other cases, but that's usually the most common one if you are using a modpack. -
Try removing OptiFine.
-
1.19.2 Forge Server Problem
ChampionAsh5357 replied to CassAsmolith's topic in Support & Bug Reports
I don't see anything necessarily wrong. You may want to check if all the mods are for 1.19.2 because I saw some mixin related errors that mention that the mods were compiled with Java 8, which only occurs in mods pre 1.17. -
You can try removing the config for gamemenumodoption, but it is more likely that the mod needs to be removed or updated.
- 1 reply
-
- 1
-
my forge 44.1.23 and 44.1.0 keep crashing
ChampionAsh5357 replied to Noah Dickens's topic in Support & Bug Reports
There's nothing in the report pasted that suggests the game crashed. Please copy and paste the entire log into a pastebin or gist and post that link here. -
forge 1.18.2 error, pls help me
ChampionAsh5357 replied to BroliCraft's topic in Support & Bug Reports
You are trying to load a client only mod on the server. Try to find which one it is to remove it. -
Could somebody help me? 1.18.2 Dawncraft mod crash
ChampionAsh5357 replied to Yukihara's topic in Support & Bug Reports
Try deleting the config from the config folder and try again. -
[1.19.2] Can anyone help me with my modpack crashes?
ChampionAsh5357 replied to Kyreous's topic in Support & Bug Reports
So, there is an issue with create which could be because of three things: it's not playing nice with other mods (I imagine there's probably some incompatibilities with rubidium if they haven't been resolved), some dependent of create is causing things to crash (createchunkloading for example), or the version of Forge is too new and some change broke create. It's difficult to determine which this is, so you'll need to experiment. -
Please provide the debug.log from the logs folder within the game directory via a gist or pastebin.
-
My minecraft crashes when I enter on my map. 1.16
ChampionAsh5357 replied to TobiManura'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.4 (Latest) and 1.18.2 (LTS). -
I need help with my mod in minecraft 1.9.2
ChampionAsh5357 replied to sandbag11's topic in Modder Support
This sounds like a datapack imo. To change the weights for zombies, you can apply a biome modifier. As for hanging the base stats, you can apply the values using the EntityJoinLevelEvent event. -
[1.19.4] limit stack size to 1 for Item and for Block
ChampionAsh5357 replied to perromercenary00's topic in Modder Support
Is this for the SlotItemHandler? If so, then just add the one with the ItemStack param. Regardless though, I don't see that deprecation warning. -
All Minecraft Resources Won't Load and/or Corrupted
ChampionAsh5357 replied to Noxxous's topic in Modder Support
That's not what the error says. It says you did not define a `particle` keyword pointing to a texture in your model JSON. -
The log is not provided. Also, please provide the relevant code.
-
To add it in the creative menu, you have to apply the enchantment before passing it through #accept. To have it on craft, you need to add the enchantment to the resulting nbt.
-
[1.19.4, SOLVED] Get if block can be passed through
ChampionAsh5357 replied to MrDiamondDog's topic in Modder Support
You can check whether BlockState#getCollisionShape has an empty VoxelShape. -
[1.19.4] I have a slight issue regarding placed features.
ChampionAsh5357 replied to zlappedx3's topic in Modder Support
Can you define method that has a parameter in this context? Do you mean your registry object holds a configured feature instance? If so, then your registry must be a datapack registry.