Skip to content

Commit

Permalink
TUNIC: Change Tunic to TUNIC (#2720)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReverM authored Jan 18, 2024
1 parent 834b6e3 commit 4c901dc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions worlds/tunic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ class TunicWeb(WebWorld):
)
]
theme = "grassFlowers"
game = "Tunic"
game = "TUNIC"


class TunicItem(Item):
game: str = "Tunic"
game: str = "TUNIC"


class TunicLocation(Location):
game: str = "Tunic"
game: str = "TUNIC"


class TunicWorld(World):
Expand All @@ -41,7 +41,7 @@ class TunicWorld(World):
about a small fox on a big adventure. Stranded on a mysterious beach, armed with only your own curiosity, you will
confront colossal beasts, collect strange and powerful items, and unravel long-lost secrets. Be brave, tiny fox!
"""
game = "Tunic"
game = "TUNIC"
web = TunicWeb()

data_version = 2
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions worlds/tunic/er_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@


class TunicERItem(Item):
game: str = "Tunic"
game: str = "TUNIC"


class TunicERLocation(Location):
game: str = "Tunic"
game: str = "TUNIC"


def create_er_regions(world: "TunicWorld") -> Tuple[Dict[Portal, Portal], Dict[int, str]]:
Expand Down
2 changes: 1 addition & 1 deletion worlds/tunic/test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@


class TunicTestBase(WorldTestBase):
game = "Tunic"
game = "TUNIC"
player: int = 1

0 comments on commit 4c901dc

Please sign in to comment.