Skip to content

Commit

Permalink
Exclude the Suburbs of Dis from wandering (#1768)
Browse files Browse the repository at this point in the history
  • Loading branch information
pstalcup authored Dec 9, 2023
1 parent 2b215a2 commit 8b103bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/garbo-lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "garbo-lib",
"version": "0.0.3",
"version": "0.0.4",
"license": "MIT",
"repository": "https://github.com/loathers/garbage-collector.git",
"description": "A library for sequencing turns resource-optimally",
Expand Down
2 changes: 1 addition & 1 deletion packages/garbo-lib/src/wanderer/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export function underwater(location: Location): boolean {
return location.environment === "underwater";
}
const ILLEGAL_PARENTS = ["Clan Basement", "Psychoses", "PirateRealm"];
const ILLEGAL_ZONES = ["The Drip"];
const ILLEGAL_ZONES = ["The Drip", "Suburbs"];
const canAdventureOrUnlockSkipList = [
...$locations`The Oasis, The Bubblin' Caldera, Barrrney's Barrr, The F'c'le, The Poop Deck, Belowdecks, Madness Bakery, The Secret Government Laboratory, The Dire Warren, Inside the Palindome, The Haiku Dungeon, An Incredibly Strange Place (Bad Trip), An Incredibly Strange Place (Mediocre Trip), An Incredibly Strange Place (Great Trip), El Vibrato Island, The Daily Dungeon, Trick-or-Treating, Seaside Megalopolis, Frat House, Through the Spacegate`,
...Location.all().filter(
Expand Down

0 comments on commit 8b103bb

Please sign in to comment.