v0.8.0: bugfixes:

- fixed class array bundling errors (JSON was loading full class references if it wasn't loading from file)
- various minor vfx bugs with goo when pump-up attack is interrupted
This commit is contained in:
Evan Debenham
2019-11-11 20:25:22 -05:00
parent 39525ec0f1
commit ad0abbd358
3 changed files with 13 additions and 5 deletions

View File

@@ -372,7 +372,7 @@ public class Bundle {
try {
JSONArray jsonArray = new JSONArray();
for (int i=0; i < array.length; i++) {
jsonArray.put( i, array[i] );
jsonArray.put( i, array[i].getCanonicalName() );
}
data.put( key, jsonArray );
} catch (JSONException e) {