From 331c625220d4db0efabb0709cc64849eb11d5422 Mon Sep 17 00:00:00 2001 From: Zhongheng Liu Date: Wed, 23 Oct 2024 12:54:53 +0300 Subject: [PATCH] chore: update greet string --- menu/menu.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu/menu.go b/menu/menu.go index 8b7ac16..25776c3 100644 --- a/menu/menu.go +++ b/menu/menu.go @@ -27,7 +27,7 @@ func CreateMenu(stdscr *Window, menu []GameMenuItem) { win, _ := NewWindow(HEIGHT, WIDTH, y, x) win.Keypad(true) - stdscr.Print("Use arrow keys to go up and down, Press enter to select") + stdscr.Print("Welcome to Rulmarc, the Role-playing game using LLMs") stdscr.Refresh() printmenu(win, menu, active)