Fixing stack, some actions were not firing off properly.

This commit is contained in:
marcins78@gmail.com
2011-10-23 12:52:59 +00:00
parent 8ff4b20385
commit 61e5f7d4e3

View File

@@ -17,7 +17,7 @@ public class ActionStack {
if (effect != null) {
return effect;
} else {
_actionStack.pop();
_actionStack.remove(_actionStack.lastIndexOf(action));
return null;
}
}