mirror of
https://gitlab.com/SamB440/rpgregions-2.git
synced 2025-12-29 03:39:08 +00:00
Solves #4
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user