Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
referencing guide_es.md (hopefully done correctly)
  • Loading branch information
ShinyNT authored Jan 9, 2024
1 parent 38d9677 commit a6619c5
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions worlds/clique/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

class CliqueWebWorld(WebWorld):
theme = "partyTime"
tutorials = [
setup_en =
Tutorial(
tutorial_name="Start Guide",
description="A guide to playing Clique.",
Expand All @@ -20,7 +20,18 @@ class CliqueWebWorld(WebWorld):
link="guide/en",
authors=["Phar"]
)
]

setup_es =
Tutorial(
setup_en.tutorial_name,
setup_en.description,
language="Español",
file_name="guide_es.md",
link="guide/es",
authors=["Shiny"]
)

tutorials = [setup_en, setup_es]


class CliqueWorld(World):
Expand Down

0 comments on commit a6619c5

Please sign in to comment.