v0.9.2a: fixed errors with buffs added to chars before they are added

This commit is contained in:
Evan Debenham 2021-03-06 18:28:00 -05:00
parent 040117f796
commit f3d0e7da4f

View File

@ -324,8 +324,7 @@ public abstract class Actor implements Bundlable {
Char ch = (Char)actor;
chars.add( ch );
for (Buff buff : ch.buffs()) {
all.add( buff );
buff.onAdd();
add(buff);
}
}
}