9
0
mirror of https://gitlab.com/SamB440/rpgregions-2.git synced 2025-12-29 03:39:08 +00:00
This commit is contained in:
SamB440
2020-02-01 13:48:13 +00:00
parent dba2654ffa
commit 89b9ffd3f5

View File

@@ -15,8 +15,8 @@ public class TitleAnimator {
public void run() {
String title = current < titles.size() ? titles.get(current) : "";
String subtitle = current < subtitles.size() ? subtitles.get(current) : "";
if (current > titles.size()
&& current > subtitles.size()) {
if (current >= titles.size()
&& current >= subtitles.size()) {
this.cancel();
return;
}