FF1: set up special settings page (remote website)

This commit is contained in:
Fabian Dill
2022-02-20 21:54:00 +01:00
parent a98cb040b7
commit 1159137c0d
6 changed files with 30 additions and 9 deletions

View File

@@ -112,7 +112,7 @@ def games():
worlds = {}
for game, world in AutoWorldRegister.world_types.items():
if not world.hidden:
worlds[game] = world.__doc__ if world.__doc__ else "No description provided."
worlds[game] = world
return render_template("supportedGames.html", worlds=worlds)