Skip to content

Commit

Permalink
Core: increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
Berserker66 committed Jan 30, 2022
1 parent e5af7d1 commit 6210630
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Version(typing.NamedTuple):
build: int


__version__ = "0.2.3"
__version__ = "0.2.4"
version_tuple = tuplize_version(__version__)

from yaml import load, dump, SafeLoader
Expand Down
4 changes: 2 additions & 2 deletions test/general/TestIDs.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def testRangeLocations(self):
self.assertLess(location_id, 2**53)

def testReservedItems(self):
"""negative IDs are reserved to the special "Archipelago" world."""
"""negative item IDs are reserved to the special "Archipelago" world."""
for gamename, world_type in AutoWorldRegister.world_types.items():
with self.subTest(game=gamename):
if gamename == "Archipelago":
Expand All @@ -43,7 +43,7 @@ def testReservedItems(self):
self.assertGreater(item_id, 0)

def testReservedLocations(self):
"""negative IDs are reserved to the special "Archipelago" world."""
"""negative location IDs are reserved to the special "Archipelago" world."""
for gamename, world_type in AutoWorldRegister.world_types.items():
with self.subTest(game=gamename):
if gamename == "Archipelago":
Expand Down
2 changes: 1 addition & 1 deletion worlds/alttp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def modify_multidata(self, multidata: dict):
del (multidata["connect_names"][self.world.player_name[self.player]])

def get_required_client_version(self) -> tuple:
return max((0, 2, 0), super(ALTTPWorld, self).get_required_client_version())
return max((0, 2, 4), super(ALTTPWorld, self).get_required_client_version())

def create_item(self, name: str) -> Item:
return ALttPItem(name, self.player, **as_dict_item_table[name])
Expand Down

0 comments on commit 6210630

Please sign in to comment.