I have no idea why it happened? I copied from original minecraft world gen code, and adapted a little bit.
See my code.
https://github.com/SteveKunG/More-Planets/tree/1.8/src/main/java/stevekung/mods/moreplanets
I tried to adding my custom sand to ore dictionary. But it doesn't work!
My Recipe code :
https://github.com/SteveKunG/More-Planets/blob/master/src/main/java/stevekung/mods/moreplanets/planets/venus/recipe/CraftingRecipesVenus.java#L98
My Core mod :
https://github.com/SteveKunG/More-Planets/blob/master/src/main/java/stevekung/mods/moreplanets/core/MorePlanetsCore.java#L259
I'm using latest forge 1.8 (Build 1468). I don't know why I setting block model parent to forge:fluid. It throwing message FileNotFoundException. Need help for this!
Here this link:
https://github.com/TheGreyGhost/MinecraftByExample/blob/master/src/main/java/minecraftbyexample/mbe31_inventory_furnace/GuiHandlerMBE31.java
The crash like as a first post.
Hi. I saw this thread. In World.java on line 2430
Changing if (this.getBlockState(pos).getBlock() == Blocks.fire) >> if (this.getBlockState(pos).getBlock() instanceof net.minecraft.block.BlockFire)
I think should be fix with another mod. And no conflict (Maybe. -.-)
Hi, I'm wanna to making custom explosion like Nuke in Explosive+ Mod (1.4.5). How to make it? Copy Explosive.java or something. Please let's me know, Thank you.