Jump to content

Cadiboo

Members
  • Posts

    3624
  • Joined

  • Last visited

  • Days Won

    58

Everything posted by Cadiboo

  1. OptiFine isn’t compatible with Forge on 1.13.2 yet. This isn’t a problem with Forge
  2. Problem with mods.waterstrainer They’ve apparently managed to mess up their use of the unbreakable new config system somehow.
  3. You’re able to go around the JSON system and directly baked models etc. but the entire point of the JSON system is to make everything accessible to and modifiable by end-users. I think that your users make the jsons themselves would be the best choice.
  4. Also post the list of mods that you have installed (this error can be caused by a very badly made coremod)
  5. after doing an instanceof check I hope
  6. You’re using it as your modid though... so it is your modid. Everything in programming is “your choice”, you can do literally whatever you want.
  7. What do you want to use these resources for? Its completely possible to autogenerate your resources using gradle it in your development workspace, but you would never want to do it in production
  8. Place a breakpoint in the writeInternal method and check variables. Also make sure that BetterStorageTileEntityTypes.LOCKER is getting properly filled with @ObjectHolder
  9. Anything is possible. I did something like this by making placeable ingots and a hammer that did stuff to them when they were broken on top of an anvil
  10. Also post your code. Heres an example of registration that works perfectly https://github.com/Cadiboo/Example-Mod/blob/d828cd29685f7732cac6a2a8cd0f5cbfee5d6e88/src/main/java/io/github/cadiboo/examplemod/ModEventSubscriber.java#L106-L118
  11. Thats a java model, not a renderer.
  12. No. That is the registry name of the entry. You need to bind a Renderer for your entity if you want it to be rendered. The rendering lookup is class based, so because your entity extends EntityArrow, the normal arrow renderer is rendering your entity. Example registering entity renderer https://gist.github.com/Cadiboo/3f5cdb785affc069af2fa5fdf2d70358#file-clienteventsubscriber-java-L69
  13. Post your mod as a working GitHub repository
  14. It means you’re trying to run a mod that was made for 1.7.10 on 1.12.2. This will never work. The mod should tell you that this will never work, but developers are lazy and don’t put the single line of code in to make this feature work. You fix it by removing the mod. To help you find out what mods you have and which ones are causing the error we need to know which ones you have installed
  15. How are you opening the command line? How are you going into your folder in the command line? How are you entering your server launch command into the command line? What is the exact error that it is giving? Please post a screenshot of the whole command line window with the error you’re getting.
  16. How are you building the mod? What is the error when you try and launch the game (post the whole log)
  17. Look at the code that creates event subscribers. There is nothing at all that deals with unsubscribing stuff with a resource location field.
  18. It’s a mappings change, nothing to do with the Forge version.
  19. https://www.minecraft.net/en-us/download/
  20. I believe this is a vanilla issue caused by forges deobfuscation.
  21. You should use the new launcher. You’ll want to choose the forge 1.14.2 version for a new/existing profile and then play that profile.
  22. Please make your own thread and post the complete log (not just a snippet) on the new thread
  23. It’s not implemented yet because cpw has much larger priorities and not much free time. Massive amounts of the config GUI code need to be rewritten
  24. This isn’t a Forge problem. Go to the OptiFine issues https://github.com/sp614x/optifine/issues
×
×
  • Create New...

Important Information

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