mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2025-02-11 19:50:37 +00:00
Fix ChiCombo outofboundsexception
This commit is contained in:
parent
0794c6945e
commit
0ca0f22370
1 changed files with 3 additions and 0 deletions
|
@ -100,6 +100,9 @@ public class ChiCombo {
|
|||
remove.add(instances.indexOf(c));
|
||||
}
|
||||
for (int i : remove) {
|
||||
if (i >= instances.size()) {
|
||||
continue;
|
||||
}
|
||||
instances.remove(i);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue