Skip to content

Commit 49a5cd0

Browse files
committed
Bump client version
1 parent cdc2f9d commit 49a5cd0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,15 +339,15 @@ def write_spoiler(self, spoiler_handle):
339339

340340
def extend_hint_information(self, hint_data: dict[int, dict[int, str]]) -> None:
341341
before_extend_hint_information(hint_data, self, self.multiworld, self.player)
342-
342+
343343
for location in self.multiworld.get_locations(self.player):
344344
if not location.address:
345345
continue
346346
if "hint_entrance" in self.location_name_to_location[location.name]:
347347
if self.player not in hint_data:
348348
hint_data.update({self.player: {}})
349349
hint_data[self.player][location.address] = self.location_name_to_location[location.name]["hint_entrance"]
350-
350+
351351
after_extend_hint_information(hint_data, self, self.multiworld, self.player)
352352

353353
###
@@ -440,7 +440,7 @@ def __init__(self, display_name: str, script_name: Optional[str] = None, func: O
440440
self.version = version
441441

442442
def add_client_to_launcher() -> None:
443-
version = 2024_09_19 # YYYYMMDD
443+
version = 2024_09_29 # YYYYMMDD
444444
found = False
445445
for c in components:
446446
if c.display_name == "Manual Client":

0 commit comments

Comments
 (0)