From 56806178f3d682b9072b2e650f7df80801b387ba Mon Sep 17 00:00:00 2001 From: kansaigaijin Date: Sun, 13 Jul 2025 20:55:39 +1200 Subject: [PATCH] Added exit to tutorial to start the game --- scene.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scene.py b/scene.py index ab290b6..8f590c6 100644 --- a/scene.py +++ b/scene.py @@ -93,9 +93,8 @@ class Scene: # Scene 0: Tutorial tutorial = Scene( name="Tutorial", - description="Welcome to Kanjin Text RPG!" + description="Welcome to Kanjin Text RPG!\n\n" "This is a very simple tutorial to show you the basics of issuing commands.\n" - "You can return at anytime where you are asked 'What do you want to do?' by typing 'Enter tutorial'.\n" "Important commands you'll want to know can be found by typing 'Help'.\n\n" "These are the available commands:\n" "Help - Prints this help message.\n" @@ -153,6 +152,8 @@ dark_cave_entrance.add_available_item(polearm, 1) # A polearm leaning against th # Link the scenes together +tutorial.add_exit("exit", starting_clearing) + starting_clearing.add_exit("north", forest_path) starting_clearing.add_exit("east", dark_cave_entrance)