From a0e7c176cec5f5b668bcb4471c0b9dd86ff318d7 Mon Sep 17 00:00:00 2001 From: Den109G <87372121+Den109G@users.noreply.github.com> Date: Tue, 15 Oct 2024 01:24:51 +0600 Subject: [PATCH] code style --- code/datums/elements/ridable.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/elements/ridable.dm b/code/datums/elements/ridable.dm index 60eab5936eb..337e166ea3f 100644 --- a/code/datums/elements/ridable.dm +++ b/code/datums/elements/ridable.dm @@ -120,7 +120,7 @@ if(ridable_atom.has_buckled_mobs()) // effect won't take place til the next time someone mounts it, so just prevent that situation to_chat(user, span_warning("It's too dangerous to smear [speed_potion] on [ridable_atom] while it's being ridden!")) return - var/speed_limit = round(CONFIG_GET(number/movedelay/run_delay) *1.5, 0.01) + var/speed_limit = round(CONFIG_GET(number/movedelay/run_delay) * 1.5, 0.01) var/datum/component/riding/theoretical_riding_component = riding_component_type var/theoretical_speed = initial(theoretical_riding_component.vehicle_move_delay) if(theoretical_speed <= speed_limit) // i say speed but this is actually move delay, so you have to be ABOVE the speed limit to pass