From 21454f2ab2b448decb4c7e3954ceb20ffd35ffe4 Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Tue, 30 Oct 2018 01:30:49 -0700 Subject: [PATCH] fix issue #923 for native Bullet --- .../src/main/java/com/jme3/bullet/objects/PhysicsRigidBody.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jme3-bullet/src/main/java/com/jme3/bullet/objects/PhysicsRigidBody.java b/jme3-bullet/src/main/java/com/jme3/bullet/objects/PhysicsRigidBody.java index 7a82e67cf..303060fe3 100644 --- a/jme3-bullet/src/main/java/com/jme3/bullet/objects/PhysicsRigidBody.java +++ b/jme3-bullet/src/main/java/com/jme3/bullet/objects/PhysicsRigidBody.java @@ -75,7 +75,7 @@ public class PhysicsRigidBody extends PhysicsCollisionObject { /** * joint list */ - protected ArrayList joints = new ArrayList(); + protected ArrayList joints = new ArrayList(4); /** * No-argument constructor needed by SavableClassUtil. Do not invoke