ocraft / ocraft-s2client

StarCraft II Client - Java library supported on Windows, Linux and Mac designed for building scripted bots and research using the SC2API.
MIT License
55 stars 15 forks source link

UnitTypeData.hasMinerals is bugged #23

Closed Ketroc closed 4 years ago

Ketroc commented 4 years ago

line58 of UnitTypeData is:

this.hasMinerals = (Boolean)((Optional)DataExtractor.tryGet(SC2APIProtocol.Data.UnitTypeData::getHasVespene, SC2APIProtocol.Data.UnitTypeData::hasHasMinerals).apply(sc2ApiUnitTypeData)).orElse(false);

probably just needs to be changed to getHasMinerals