UndertaleModTool icon indicating copy to clipboard operation
UndertaleModTool copied to clipboard

A function/script call right before do-until loop makes it disappear.

Open nkrapivin opened this issue 5 years ago • 1 comments

Only occures in dev version of UndertaleModTool.

Test script:

///scr_test()
somevar = 200;
show_debug_message("hi, i make do until disappear hehe");
do {
    somevar = irandom(100);
} until (somevar == 50);

do-until will disappear, but if you comment the show_debug_message line it will show up. Why that happens?

nkrapivin avatar Feb 16 '20 11:02 nkrapivin

This seems to have regressed further now. Even

somevar = 200;
do {
    somevar = irandom(100);
} until (somevar == 50);

now causes the do..until to dissapear

Miepee avatar Jun 20 '22 14:06 Miepee