Jump to content

Cadiboo

Members
  • Posts

    3624
  • Joined

  • Last visited

  • Days Won

    58

Everything posted by Cadiboo

  1. Wrong mappings. Extra Utils is written for a more recent 1.12.x Mapping, and you've set up your dev environment with an older version. Take a look at their build.gradle file for the mappings they are using
  2. Whats your source for this? Also, take a look at this, its an interesting read https://github.com/MinecraftForge/MinecraftForge/issues/4862
  3. Make sure your using a forge version that your version of optifine supports (hint- you’re not)
  4. Your java isn’t the issue. You should play around with your video settings.
  5. (A little) more ram & processing power -> more TPS Well written mods -> more FPS This is not a rule, but it’s usually true
  6. Yeah, Optifine only works on specific versions of Forge & absolutely breaks everything on any other version
  7. Try removing extra trees and buzz135.industrial
  8. Make sure your java home is set to that install / remove all other installs. Also post your new logs
  9. A mod is probably not resetting the GL state. What mods do you have installed?
  10. Try removing all coremods that have to do with chunks or the world
  11. post your entire log please
  12. Post updated logs
  13. try removing the BirdsNests mod
  14. Please keep this forum in english
  15. Your using the wrong blend function (or maybe not using depth correctly). Have a look at what happens when you look at water through your object. Take a look at https://github.com/Cadiboo/WIPTech/blob/2d7e3f1073ed5602944e35daccf18ced8ff4f40a/src/main/java/cadiboo/wiptech/client/render/tileentity/TESRAssemblyTable.java#L19-L22 and https://github.com/Cadiboo/WIPTech/blob/2d7e3f1073ed5602944e35daccf18ced8ff4f40a/src/main/java/cadiboo/wiptech/client/render/tileentity/TESRTurbine.java#L18-L19
  16. You should turn that listener into a hook that posts an event for compatibility
  17. Then your doing something very wrong
  18. Objectholders were never meant be used this way, which is why it crashes, you could submit a PR to Forge adding a check if the class has a @SideOnly annotation in the object holder discovery logic though. @SideOnly should also not be used the way your using it though so...
  19. Cadiboo

    .

    I know that the mods a player is using are sent to the server on connect, you could find where that code is & then see if/where that information is kept/used
  20. Take a look at what the slowness effect does
  21. Take a look at
  22. You will still need models. You may be able to define those models in the blockstate file though (I have no proof of this, and I think it’s unlikely, but MAY be possible). You should take a look at Forge’s blockstate format. Personally I prefer vanilla because of its simplicity but Forge definitely has more features & potential. https://mcforge.readthedocs.io/en/latest/models/blockstates/forgeBlockstates/
  23. ... but it doesn’t... you catch the exception, and print it. The key word there is catch - the exception doesn’t get thrown & doesn’t crash the game.
×
×
  • Create New...

Important Information

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