From d41f0053db67a0b6bdfb498e10c6a23a8774036f Mon Sep 17 00:00:00 2001 From: Anonymous4045 Date: Wed, 20 Mar 2024 14:26:10 -0500 Subject: [PATCH] Fix bullet mass --- src/pyweek37/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyweek37/constants.py b/src/pyweek37/constants.py index cb1af3c..5713c0c 100644 --- a/src/pyweek37/constants.py +++ b/src/pyweek37/constants.py @@ -33,7 +33,7 @@ LEFT_FACING = 1 BULLET_MOVE_FORCE = 4500 -BULLET_MASS = 1000 +BULLET_MASS = 0.1 BULLET_GRAVITY = 300 BALLOON_MASS = 0.01