What I did:
- Add a long list of bullets.
- No image
- I expected, or at least hoped, that the bullet point list would show nicely and not causing the Continue button to be off-screen. Ideally with a scroll bar.
- I expected using `image = nil` that the image would simply not show. I also have reason to believe this is intended behaviour.
What happened
- The long bullet list pushed the Continue button off-screen, and now the only way to continue or quit is using Alt-F4 or clicking on the X in the top right.
- The image is throwing an error trying to find an empty path.
Please add a scrollbar to the bullet list frame, that would be really awesome and helpful.
Reproduction
Code: Select all
/c
local p = { }
for i=1,30 do table.insert(p, "This is the "..i.."th point I'm making about something!") end
game.set_win_ending_info{
title = "This is my title",
image_path = nil,
message = {"victory-message-space-age"},
bullet_points = p,
}
game.set_game_state{player_won = true, game_finished = true, can_continue = true}