Add disclaimer for the end of the example game, because I haven't made anything else and want to show it off

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2021-11-18 17:36:23 -08:00
parent ff5d4484fe
commit 49050c9412

View File

@@ -321,4 +321,11 @@ database.add_items(
) )
) )
database.add_rooms(Room(id="western_fork", name="Western fork", desc=[], items=[])) database.add_rooms(
Room(
id="western_fork",
name="Western fork",
desc="((This is currently the end of the game.)) Thanks for playing!",
items=[],
)
)