fixed some test failures

This commit is contained in:
Evan Kranzler 2021-01-30 13:21:49 -05:00
parent 2181eacb85
commit 4df7bc157c
3 changed files with 41 additions and 36 deletions

View file

@ -41,6 +41,9 @@ public class Effects extends ArrayList<Effect> {
String lastRule = null;
int effectNum = 0;
for (Effect effect : this) {
if (effect == null) {
continue;
}
String endString = "";
String nextRule = effect.getText(mode);