Fixed
- An issue which renamed all variables to: "VariableStruct" - [Issue 9]
[issue 9]: https://github.com/KSneijders/AoE2ScenarioParser/issues/9
Changed
- The datasets `UnitInfo`, `BuildingInfo`, `HeroInfo`, `TechInfo` and `OtherInfo` replace the following datasets:
- UnitId, GaiaUnitId, UnitIcon and GaiaUnitIcon
- BuildingId, GaiaBuildingId and BuildingIcon
- HeroId, HeroIcon
- TechId
- UnitOtherId, GaiaUnitOtherId
- The `ButtonLocation` dataset has changed it's properties.
- From: `LOCATION_<C>_<R>` (`<C>` = Column number, `<R>` = Row number)
- To: `r<R>c<C>`
- Example (Row 1, col 4):
- Old: `LOCATION_3_0`. Old numbering started from 0.
- New: `r1c4`. New numbering starts from 1.
Please check the [datasets cheatsheet] page or the [readthedocs dataset] page on how to use the new datasets.
[datasets cheatsheet]: https://github.com/KSneijders/AoE2ScenarioParser/blob/master/cheatsheets/DATASETS.md
[readthedocs dataset]: https://aoe2scenarioparser.readthedocs.io/en/master/
---