Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/28/17 in all areas

  1. You have unnecessary spaces in the strings defining your recipe. For it to fit in a 2x2 square, define it using 2 strings of 2 characters each, rather than 3 of 3.
    1 point
  2. If you expect the list to always contain elements, step through the code where you populate the list using your debugger, to find out why it isn't being filled like you expect. If you just want to prevent a crash for cases where the list has no elements, use ArrayList#isEmpty() to check.
    1 point
  3. Ah, that makes sense. That warning is misleading, then
    1 point
  4. (https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-5.html#jvms-5.4.1) This is probably a reference that you haven't read, but just googling for "java.lang.VerifyError" yields similar results. What this error means is that some class was malformed or otherwise screwed up at runtime. This is usually the product of meddling with coremods and ASM and stuff. So this is probably caused by Optifine, the only 3rd party coremod installed. You can also, higher up in the log, see that Optifine printed an IOException it caught, which, almost certainly, led up to the VerifyError. You should do that. (PS for smarter ppl than me: I don't get why optifine is not listed in the core mod list even though its transformer is clearly being loaded.)
    1 point
  5. That's precisely what it is. A top half and a bottom half.
    1 point
  6. Surprise. http://minecraft.gamepedia.com/Flower#Data_values There's three.
    1 point
  7. You might want to take a look at this: https://github.com/Draco18s/ReasonableRealism/blob/master/src/main/java/com/draco18s/hardlib/api/internal/CommonContainer.java#L23-L33
    1 point
×
×
  • Create New...

Important Information

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