From 2b5287773b031d246a0d6298d48b079fd6fc8949 Mon Sep 17 00:00:00 2001 From: landgreen Date: Wed, 20 Nov 2019 06:09:13 -0800 Subject: [PATCH] block drop timeout shortened --- js/player.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/player.js b/js/player.js index 989e5c7..5be366e 100644 --- a/js/player.js +++ b/js/player.js @@ -847,7 +847,7 @@ const mech = { setTimeout(solid, 50, that); } }; - setTimeout(solid, 400, this.holdingTarget); + setTimeout(solid, 200, this.holdingTarget); //throw speed scales a bit with mass const speed = Math.min(85, Math.min(54 / this.holdingTarget.mass + 5, 48) * Math.min(this.throwCharge, this.throwChargeMax) / 50);