Skip to content

Commit

Permalink
remove logsanity location for missable TH_VILLAGE_X3 log
Browse files Browse the repository at this point in the history
  • Loading branch information
Ixrec committed Feb 4, 2024
1 parent 335bcf9 commit 71f76d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion worlds/outer_wilds/Options.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class DeathLink(Choice):

# DLC + logsanity is another 71 checks. "rumor sanity" would be another 103 (+22 with DLC).
class Logsanity(Toggle):
"""Adds a location for every (non-DLC, non-rumor) ship log fact in the game, which totals 178 new checks."""
"""Adds 176 locations for all the (non-DLC, non-rumor, non-missable) ship log facts in the game."""
display_name = "Logsanity"


Expand Down
5 changes: 1 addition & 4 deletions worlds/outer_wilds/shared_static_logic/locations.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -510,10 +510,7 @@
"creation_settings": [ "logsanity" ], "address": 1085039042, "name": "Ship Log: Village 2 - Statue Eyes Opened",
"region": "Timber Hearth Village", "requires": []
},
{
"creation_settings": [ "logsanity" ], "address": 1085039043, "name": "Ship Log: Village 3 - Never Opened Before",
"region": "Timber Hearth Village", "requires": []
},
// removed 1085039043 / Village 3 because it's perma-missable
{
"creation_settings": [ "logsanity" ], "address": 1085039044, "name": "Ship Log: Zero-G Cave 1 - Identify",
"region": "Timber Hearth Village", "requires": []
Expand Down
2 changes: 1 addition & 1 deletion worlds/outer_wilds/test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class TestLogsanityWorld(OuterWildsTestBase):
}

def test_logsanity_world(self):
self.assertEqual(self.get_location_count(), 237) # 60 default + 177 logsanity locations
self.assertEqual(self.get_location_count(), 236) # 60 default + 176 logsanity locations

# make sure the logsanity locations exist; this one requires nothing to reach
self.assertTrue(self.multiworld.state.can_reach("Ship Log: Village 1 - Identify", "Location", 1))
Expand Down

0 comments on commit 71f76d2

Please sign in to comment.