You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you enable debug mode within Intellij and cycle through a list option the game crashes when you reach the last element.
I get no useful crash log or stacktrace but the IDE opens the Preconditions.java file. It seems to refer to a specific part of that file possibly hinting at what went wrong:
@IntrinsicCandidate
public static <X extends RuntimeException>
int checkIndex(int index, int length,
BiFunction<String, List<Number>, X> oobef) {
if (index < 0 || index >= length)
throw outOfBoundsCheckIndex(oobef, index, length);
return index;
}
This may not really be a top priority but I thought I would share it as it is quite annoying in the cases when you are actually in debug mode.
The text was updated successfully, but these errors were encountered:
If you enable debug mode within Intellij and cycle through a list option the game crashes when you reach the last element.
I get no useful crash log or stacktrace but the IDE opens the
Preconditions.java
file. It seems to refer to a specific part of that file possibly hinting at what went wrong:This may not really be a top priority but I thought I would share it as it is quite annoying in the cases when you are actually in debug mode.
The text was updated successfully, but these errors were encountered: