From 5e4918a93971eb7ce36a44f5286163be598e0663 Mon Sep 17 00:00:00 2001 From: terencehill Date: Fri, 13 Oct 2017 23:09:27 +0200 Subject: [PATCH] Add missing indentation --- qcsrc/ecs/systems/sv_physics.qc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/qcsrc/ecs/systems/sv_physics.qc b/qcsrc/ecs/systems/sv_physics.qc index c20ae8bda..6731bdf94 100644 --- a/qcsrc/ecs/systems/sv_physics.qc +++ b/qcsrc/ecs/systems/sv_physics.qc @@ -64,7 +64,9 @@ void sys_phys_spectator_control(entity this) || CS(this).impulse == 15 || CS(this).impulse == 18 || (CS(this).impulse >= 200 && CS(this).impulse <= 209) - ) { this.spectatorspeed = bound(1, this.spectatorspeed + 0.5, 5); } else if (CS(this).impulse == 11) { + ) { + this.spectatorspeed = bound(1, this.spectatorspeed + 0.5, 5); + } else if (CS(this).impulse == 11) { this.spectatorspeed = maxspeed_mod; } else if (CS(this).impulse == 12 || CS(this).impulse == 16 -- 2.39.2