albibong 1.1.8__py3-none-any.whl → 1.1.10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- albibong/classes/event_handler/handle_event_party.py +1 -1
- albibong/resources/EventCode.py +662 -615
- albibong/resources/OperationCode.py +533 -517
- albibong/resources/event_code.json +418 -370
- albibong/resources/items_by_id.json +24878 -23093
- albibong/resources/items_by_unique_name.json +13446 -11661
- albibong/resources/operation_code.json +354 -337
- {albibong-1.1.8.dist-info → albibong-1.1.10.dist-info}/METADATA +1 -1
- {albibong-1.1.8.dist-info → albibong-1.1.10.dist-info}/RECORD +12 -12
- {albibong-1.1.8.dist-info → albibong-1.1.10.dist-info}/WHEEL +1 -1
- {albibong-1.1.8.dist-info → albibong-1.1.10.dist-info}/entry_points.txt +0 -0
- {albibong-1.1.8.dist-info → albibong-1.1.10.dist-info}/licenses/LICENSE +0 -0
|
@@ -5,7 +5,7 @@ from albibong.classes.world_data import WorldData
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
def handle_event_party_joined(world_data: WorldData, parameters):
|
|
8
|
-
world_data.party_members = set(parameters[
|
|
8
|
+
world_data.party_members = set(parameters[6])
|
|
9
9
|
WorldDataUtils.ws_update_damage_meter(world_data)
|
|
10
10
|
|
|
11
11
|
|