Extend the hint system to explain GUI elements

This commit is contained in:
blinry 2021-01-19 12:48:16 +01:00
parent d258f812ce
commit e87e29a3ed
9 changed files with 83 additions and 28 deletions

View file

@ -96,6 +96,7 @@ func command_done(cmd):
if cmd.output.length() <= 1000:
output.text = output.text + "$ " + cmd.command + "\n" + cmd.output
game.notify("This is your terminal! All commands are executed here, and you can see their output. You can also type your own commands here!", self, "terminal")
else:
$Pager/Text.text = cmd.output
$Pager.popup()