Fixed a bug. Change stack order after cancel an ability.I did'nt checked if this bug appear with other members of gamestate.

This commit is contained in:
Plopman 2013-08-13 19:07:15 +02:00
parent da3c153a10
commit ad436bbf59

View file

@ -43,8 +43,9 @@ public class SpellStack extends ArrayDeque<StackObject> {
public SpellStack () {}
public SpellStack(final SpellStack stack) {
for (StackObject spell: stack) {
this.push(spell.copy());
this.addLast(spell.copy());
}
}