Merge pull request #70 from CarlPoppa1/friendly-mon-fix

Amend monster categorisation
This commit is contained in:
Neo-Silver
2026-03-03 19:31:19 +01:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -212,7 +212,7 @@ func (gd *GameReader) getSkills(skillListPtr uintptr) map[skill.ID]skill.Points
func (gd *GameReader) GetStates(statsListExPtr uintptr) state.States {
var states state.States
for i := 0; i < 6; i++ {
for i := 0; i < 8; i++ {
offset := i * 4
stateByte := gd.Process.ReadUInt(statsListExPtr+0xAF0+uintptr(offset), Uint32)