UndertaleModTool
UndertaleModTool copied to clipboard
scr_namingscreen Decompilation Error (New Decompiler)
This probably exists in the old one as well but in the new decompiler there's a couple of break sections that are left without an proper break in scr_namingscreen for entering you name.
The code should decompile to
if ((selected_col < 0) || ((selected_row < 0) || (string_length(charmap[selected_row, selected_col]) > 0))) { break } else { continue }
but instead decompiles to
if ((selected_col < 0) || ((selected_row < 0) || (string_length(charmap[selected_row, selected_col]) > 0))) { } else { continue }