Open zaafar opened 1 year ago
There are some Enums in the schema.min.json with no values e.g.
enum AchievementSets @indexing(first: 0) { _ }
These are different from enums that have values e.g.
enum ActiveSkillTargetTypes @indexing(first: 1) { TARGETABLE_GROUND ENEMY WALKABLE_GROUND ANYWHERE_SELF_TARGET ITEM CORPSE _ NO_LINE_OF_SIGHT BEHIND_MONSTER SELF_ORIGIN ROTATE_TO_TARGET }
Libggpk2 crashes on these undefined enums as shown below.
It would be good if Libggpk2 don't crash on them and just consider them as integer starting from what's given in bracket i.e. (first: 1).
(first: 1)
@aianlinb not even in libggpk3?
@zaafar Well... I'll solve it in the future when I have time to continue developing LibGGPK3, LibDat3
There are some Enums in the schema.min.json with no values e.g.
These are different from enums that have values e.g.
Libggpk2 crashes on these undefined enums as shown below.
It would be good if Libggpk2 don't crash on them and just consider them as integer starting from what's given in bracket i.e.
(first: 1)
.