Cosmetic changes, UX/UI improvements in TUI mode, added colored text support in dialogs

This commit is contained in:
Anon 2026-06-14 02:11:04 +02:00
parent 2aa85cbb17
commit c0d983272b
9 changed files with 321 additions and 105 deletions

View file

@ -79,9 +79,6 @@ public sealed class DialogNbtParser
var body = ParseBody(GetValue(nbt, "body"));
var inputs = ParseInputs(GetValue(nbt, "inputs"));
if (string.IsNullOrWhiteSpace(title))
title = type;
return new DialogCommon(title, externalTitle, canCloseWithEscape, pause, afterAction, body, inputs);
}