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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user