Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/27/17 in all areas

  1. ....Alternatively, use ModelLoader in preInit...
    1 point
  2. Minecraft inverts the V axis for whatever reason afaik. Flip the UV map vertically and it should work.
    1 point
  3. Caused by: java.io.FileNotFoundException: progressiveg:models/item/ak_47_0.mtl Yeah, fix the wrong material and post the new log. Remember that the obj file must also be named the same as the mtl file.
    1 point
  4. That's not stepping using the debugger. You're telling us only the user experience. Set some break points and step through the code so you can see, line by line, what field of what object the itemstack is moving to when you "put it in inventory", and so you can see what field of what object the "wrong" itemstack is coming from when you "take it out" (and follow it all the way into your hand to see that it's not switched).
    1 point
  5. Additionaly some potential issues which are not directly related to your problem but are still worth fixing: ItemModelMesher is outdated and buggy. Use ModelLoader. And register your models in your client proxy during pre-init or in a ModelRegistryEvent(prefered) ?
    1 point
  6. From this picture, it looks like the blockstates directory is directly inside the assets directory, rather than inside assets.modid alongside lang, models, and textures like it should be.
    1 point
  7. Use the minecraft:item_nbt ingredient type. Set the nbt property to the NBT data you want. I don't have any examples of the minecraft:item_nbt ingredient type, but you can see an example of a recipe output with NBT (which uses the same properties) here.
    1 point
  8. Try removing Optifine.
    1 point
  9. You have mods designed for 1.11.2 installed on your client - you should find versions of the mods for 1.12 instead.
    1 point
  10. You need to make an IGuiHandler to control opening both the server-side container and the client-side gui. Then call player#openGui to open them both as needed.
    1 point
  11. If you're not using the latest version of Forge, update. Recent versions overhauled the registry system, adding the GameRegistry.register method to register any IForgeRegistryEntry object (e.g. Block , Item , BiomeGenBase ).
    1 point
  12. WorldChunkManager was renamed to BiomeProvider in 1.9. BiomeProvider#allowedBiomes doesn't control which biomes generate, it only controls which biomes can be used as the world spawn point. To allow a biome to generate, call BiomeManager.addBiome . To allow a biome to used as the world spawn point, call BiomeManager.addSpawnBiome .
    1 point
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.