lufia2ac: fix client behavior at max blue chests combined with party member or capsule monster shuffle (#2478)

When option combinations at (or near) the maximum location count were used, the client could trip over a wrongly coded limit and stop sending checks.
This commit is contained in:
el-u
2023-11-24 01:59:41 +01:00
committed by GitHub
parent 2f6b6838cd
commit 205c6acb49
4 changed files with 4 additions and 3 deletions

View File

@@ -66,7 +66,7 @@ class L2ACWorld(World):
"Party members": {name for name, data in l2ac_item_table.items() if data.type is ItemType.PARTY_MEMBER},
}
data_version: ClassVar[int] = 2
required_client_version: Tuple[int, int, int] = (0, 4, 2)
required_client_version: Tuple[int, int, int] = (0, 4, 4)
# L2ACWorld specific properties
rom_name: bytearray