v0.3.2: reworked floor 10 and the tengu fight (lots of changes)

This commit is contained in:
Evan Debenham
2015-11-01 21:45:58 -05:00
parent c1356e0752
commit da0e6c686c
8 changed files with 480 additions and 299 deletions
@@ -102,7 +102,7 @@ public abstract class Actor implements Bundlable {
private static HashSet<Char> chars = new HashSet<>();
private static Actor current;
private static SparseArray<Actor> ids = new SparseArray<Actor>();
private static SparseArray<Actor> ids = new SparseArray<>();
private static float now = 0;
@@ -231,7 +231,7 @@ public abstract class Actor implements Bundlable {
ids.put( actor.id(), actor );
all.add( actor );
actor.time += time;
actor.time = time;
actor.onAdd();
if (actor instanceof Char) {