Jump to content

Ugdhar

Moderators
  • Posts

    2617
  • Joined

  • Last visited

  • Days Won

    37

Everything posted by Ugdhar

  1. I don't think so, debug.log from my experience always starts like this: It should be in %APPDATA%\.minecraft\logs if you are on Windows
  2. I'm pretty sure JAVA_HOME is a JDK env variable, and not used by the JRE. It is likely searching your path for the path to the JRE, or I've also seen a program that sets the default java if multiple are on the system, but as I only use 8, I don't have details on it. *edit: I would say I must be wrong, did a quick google and this was right at the top, from an Oracle website:
  3. Post you debug.log please, it should give details on what is going on
  4. Please post a log using Java 8, since we know it won't work with 14.
  5. Try using Java 8, higher versions are not supported at this time.
  6. 1.12 is no longer supported due to age. Please update to a modern version (1.14.4/1.15.2) to receive support. More information on supported versions can be found in the LTS link at the top of every page.
  7. I know that seems logical, but honestly modified logs are a bad idea, you don't know if you accidentally deleted something that was actually needed information. *edit anyway, I don't see anything there, so I'm standing by my original thought that you should set some breakpoints and debug your packet code to make sure all the data is what you expect it to be and not null or something.
  8. That is not even close to the same as the log the OP posted. You should make your own thread and post your log there.
  9. What exactly did you try? Did you @Override the method? Post code and logs please, it helps to see the big picture! Did you look at farmland? And probably also at crop/bush blocks to make sure the logic is not in there.
  10. I would try setting breakpoints and making sure all of the data in your packet code is valid. Also, you should post debug.log, it has much more information than a crashlog
  11. I have not found any site that breaks things down for you, here and there you might find mention of class X Y or Z that is fun/useful, tutorials here and there (which MOST of them alllll cover the same stuff, and then most of those are pretty terrible, especially the majority of the video ones) A lot of the forge stuff is documented/commented, but from what I've seen a vast majority of the vanilla code is not. Some of it is easy to understand, some of it feels like a spaghetti mess rabbit hole. Best things to do: - dig in and just read the code for stuff you're interested in - google, google, google! And forums search on here - Post questions when you can't find what you are looking for. This is the trickiest one probably, because you have to pose your question correctly, and sometimes you don't know you're asking the wrong question. Use as much detail as possible to get the best answer you can. I'm not really making a mod, but I love to tinker, so I spend a lot of time messing with concepts as opposed to finish products, which sounds similar to your original question. Bad news is, you can't be lazy on this one, you have to actively mess with stuff/read code/etc, because most people on here are doing their own things, and while we enjoy helping, most appreciate when people at least try to find their own answers
  12. Did you download/install a 1.15.2 version of forge? Did you create a new Installation in the launcher for it? Same or different game directory? What does it say at the bottom of the launcher to the left of the Play button?
  13. Also, post logs. (for the reason below) I created some json recipe files from the commandline using echo, and for some reason it put an invisible character in the very beginning of my file, even though everything looked right, they didn't work, and there were errors in the log. Creating a new file and then pasting the json in fixed it. Of course, this can all be avoided by using data generators (which I haven't looked at yet lol)
  14. Also, a little bit of description with links to some test code on the minecraftforge github: https://dragoness-e.dreamwidth.org/136561.html
  15. I use Eclipse, and the debug function and breakpoints work just fine!
  16. McJty has an example of a simple chunk provider: https://wiki.mcjty.eu/modding/index.php?title=Tut14_Ep12 You could also look at the vanilla chunk generator that generates the flat world.
  17. You may need to use RenderTypeLookup.setRenderLayer on your blocks in FMLClientSetupEvent, i.e. RenderTypeLookup.setRenderLayer(NEWBLOCKS.FIREFLOWER.get(), RenderType.getCutout()); I believe this needs to be done using a DeferredWorkQueue *edit: I guess I should have asked what version, this is how I fixed a similar issue in 1.15.2.
  18. Try the latest see if that works better
  19. What version of the forge MDK did you download?
  20. Block drops are done using loot tables, vanilla sources are a good reference, and the Minecraft wiki has a breakdown of the loot table json. Unfortunately the forge docs are out of date, I use Google and the forums search to get info on stuff I tinker with. Lots of vanilla sources and forums reading!
  21. The filenames of your mods suggest that you downloaded them from a repost site, such as 9 minecraft or something. These sites are bad, and often have outdated, and potentially modified versions of these mods, not to mention hosting them without permission. You should delete all of your mods, and go redownload them from curseforge.com. That is the only place I would trust to download mods, aside from the mod developers own site. Visit https://stopmodreposts.org/ for more information and a list of these sites that you should avoid. That being said, 1.12 is no longer supported due to age. See the LTS link at the top of every page for more information on supported versions. TLDR: 1.14.4 or 1.15.2
  22. 1.12 is no longer supported due to age. Please update to a modern (1.14.4/1.15.2) version to receive support. More information on supported versions can be found in the LTS link at the top of every page.
  23. Still Java 14. That's your problem then. I don't know how to change it for you, especially if you've run the commands to remove it. That's more of an operating system issue as opposed to a minecraft/forge issue.
  24. Look at the version numbers. You're using Minecraft 1.15.2 You downloaded forge for 1.5.2 Download forge for 1.15.2 and you will have better luck.
  25. You should make your own post, and post logs, code, and screenshots (if the logs and code don't show what you mean)
×
×
  • Create New...

Important Information

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