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
The command System.out.println(UnitType.Zerg_Zergling.size().toString()); crashes JRE with EXCEPTION_ACCESS_VIOLATION.
I was also not able to compare UnitSizeType objects such as getting a unit from self.getUnits() then comparing its UnitSizeType against UnitSizeType.Zerg_Zergling.size(). The comparison does not crash JRE, the comparison simply fails to return true when the two UnitSizeType objects should be equal. It appears .size() just returns null or some empty/irrelevant object every time no matter what the UnitType is.
Software:
Virtual machine Windows 7 32-bit
BWMirror 2.5
Oracle JDK 1.8u111 32-bit
NetBeans 8.2
The text was updated successfully, but these errors were encountered:
The occasional UnitType that appeared to have a non-null UnitSizeType had some garbage value that wasn't equal to anything in the UnitSizeType enumeration.
The command
System.out.println(UnitType.Zerg_Zergling.size().toString());
crashes JRE withEXCEPTION_ACCESS_VIOLATION
.I was also not able to compare UnitSizeType objects such as getting a unit from
self.getUnits()
then comparing its UnitSizeType againstUnitSizeType.Zerg_Zergling.size()
. The comparison does not crash JRE, the comparison simply fails to return true when the two UnitSizeType objects should be equal. It appears.size()
just returns null or some empty/irrelevant object every time no matter what the UnitType is.Software:
The text was updated successfully, but these errors were encountered: