Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
ok I think this is fixed now
  • Loading branch information
ShinyNT authored Jan 9, 2024
1 parent a6619c5 commit d77e7b8
Showing 1 changed file with 18 additions and 19 deletions.
37 changes: 18 additions & 19 deletions worlds/clique/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,24 @@

class CliqueWebWorld(WebWorld):
theme = "partyTime"
setup_en =
Tutorial(
tutorial_name="Start Guide",
description="A guide to playing Clique.",
language="English",
file_name="guide_en.md",
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"]
)

setup_en = Tutorial(
tutorial_name="Start Guide",
description="A guide to playing Clique.",
language="English",
file_name="guide_en.md",
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]

Expand Down

0 comments on commit d77e7b8

Please sign in to comment.