From 4c901dcfc0554fd2d2774bb73499655d3ce1e99a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dana=C3=ABl=20V?= <104455676+ReverM@users.noreply.github.com> Date: Wed, 17 Jan 2024 19:56:34 -0500 Subject: [PATCH] TUNIC: Change Tunic to TUNIC (#2720) --- worlds/tunic/__init__.py | 8 ++++---- worlds/tunic/docs/{en_Tunic.md => en_TUNIC.md} | 0 worlds/tunic/er_scripts.py | 4 ++-- worlds/tunic/test/__init__.py | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) rename worlds/tunic/docs/{en_Tunic.md => en_TUNIC.md} (100%) diff --git a/worlds/tunic/__init__.py b/worlds/tunic/__init__.py index b946ea8e..d8311de8 100644 --- a/worlds/tunic/__init__.py +++ b/worlds/tunic/__init__.py @@ -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): @@ -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 diff --git a/worlds/tunic/docs/en_Tunic.md b/worlds/tunic/docs/en_TUNIC.md similarity index 100% rename from worlds/tunic/docs/en_Tunic.md rename to worlds/tunic/docs/en_TUNIC.md diff --git a/worlds/tunic/er_scripts.py b/worlds/tunic/er_scripts.py index 84b97e13..4d640b2f 100644 --- a/worlds/tunic/er_scripts.py +++ b/worlds/tunic/er_scripts.py @@ -10,11 +10,11 @@ if TYPE_CHECKING: 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]]: diff --git a/worlds/tunic/test/__init__.py b/worlds/tunic/test/__init__.py index f8ab99d6..d7ae47f7 100644 --- a/worlds/tunic/test/__init__.py +++ b/worlds/tunic/test/__init__.py @@ -2,5 +2,5 @@ from test.bases import WorldTestBase class TunicTestBase(WorldTestBase): - game = "Tunic" + game = "TUNIC" player: int = 1 \ No newline at end of file