From 23feb2b06332014fee6d9027cb21687bcaff5643 Mon Sep 17 00:00:00 2001 From: tcm390 Date: Thu, 4 Aug 2022 15:49:07 -0400 Subject: [PATCH] use naruto action to set the speed instead of io --- game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.js b/game.js index 02068c500f..2f66384275 100644 --- a/game.js +++ b/game.js @@ -1623,7 +1623,7 @@ class GameManager extends EventTarget { } const localPlayer = playersManager.getLocalPlayer(); const sprintMultiplier = (ioManager.keys.shift && !isCrouched) ? - (ioManager.keys.doubleTap ? 20 : 3) + (localPlayer.hasAction('narutoRun') ? 20 : 3) : ((isSwimming && !isFlying) ? 5 - localPlayer.getAction('swim').swimDamping : 1); speed *= sprintMultiplier;