You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
YoYo has confirmed that they're not going to fix a bug they introduced in 2024.14.1 regarding how room_last works. In order to make everything appear as expected, apply this band-aid fix (looks like permanently now) in: c_devmenu -> Create Event -> expand (read: replace) the room generation code (line 39):
// Automatically generate a room list
var _room_list = [];
var _index = 0;
for (var _i = 0; _i <= 999; _i++)
{
var _name = room_get_name(_i);
if _name != "<undefined>"
{
_room_list[_index] = string_upper(_name);
_index++;
}
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hello!
YoYo has confirmed that they're not going to fix a bug they introduced in 2024.14.1 regarding how
room_lastworks. In order to make everything appear as expected, apply this band-aid fix (looks like permanently now) in:c_devmenu-> Create Event -> expand (read: replace) the room generation code (line 39):Beta Was this translation helpful? Give feedback.
All reactions