diff options
Diffstat (limited to 'client/player/controllable_player.gd')
| -rw-r--r-- | client/player/controllable_player.gd | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/client/player/controllable_player.gd b/client/player/controllable_player.gd index 8ba11097..c4c29566 100644 --- a/client/player/controllable_player.gd +++ b/client/player/controllable_player.gd @@ -65,7 +65,7 @@ func _process(delta):  func _process_movement(delta):  	var input = Input.get_vector("left", "right", "forward", "backwards") -	var boost = Input.is_action_pressed("boost") +	var boost = Input.is_action_pressed("boost") or (Global.get_setting("latch_boost") and boosting)  	input = input.rotated( - game.camera.angle_target)  	position_anim = position_  	rotation_anim = rotation_ | 
