simplified RNG code for the title pic (hopefully reduces lag)

This commit is contained in:
onms 2025-03-30 04:00:49 -05:00
parent 3ea59dfe83
commit 30a0c89405
2 changed files with 1 additions and 6 deletions

Binary file not shown.

View file

@ -16,12 +16,7 @@ class Scene_Title
end
def random_choice_title1
list = ["タイトル","タイトル2","タイトル3","タイトル4","タイトル5","タイトル6",
"タイトル7","タイトル8","タイトル9","タイトル10","タイトル11",
"タイトル12","タイトル13","タイトル14","タイトル15","タイトル16",
"タイトル17","タイトル18","タイトル19","タイトル20","タイトル21",
"タイトル22","タイトル23","タイトル24","タイトル25","タイトル26",
"タイトル27","タイトル28","タイトル29","タイトル30","タイトル31"]
list = ["タイトル"] + (2..31).map { |i| "タイトル#{i}" }
#list = ["タイトル21"]
return list.sample