From a6d2352cfaa7aa2c6302ee3b59c092d0093d0b0a Mon Sep 17 00:00:00 2001 From: Joe S <31870999+KenwoodFox@users.noreply.github.com> Date: Mon, 15 Feb 2021 22:16:20 -0500 Subject: [PATCH] Somewhat less broken? still littered with bugs. --- Adventure Game/adventure_game/main.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Adventure Game/adventure_game/main.py b/Adventure Game/adventure_game/main.py index 0c69125..d30f79d 100644 --- a/Adventure Game/adventure_game/main.py +++ b/Adventure Game/adventure_game/main.py @@ -1,5 +1,5 @@ import curses -from curses.textpad import Textbox, rectangle +from curses.textpad import Textbox class AdventureGame: @@ -70,7 +70,8 @@ class AdventureGame: pass def draw_art_window(self, window): - window.addstr(0, 0, "Wip") + window.addstr("Wip") + window.addstr("Morewip lol") window.box() window.refresh() @@ -79,7 +80,7 @@ class AdventureGame: window.refresh() textbox = Textbox(window) - return textbox.gather() + return textbox.edit() if __name__ == '__main__':