From ecdcb72429fe59ae139995c2f9d3f2d58e106b2a Mon Sep 17 00:00:00 2001 From: CHOMPStation2 <58959929+CHOMPStation2@users.noreply.github.com> Date: Mon, 17 Jun 2024 02:12:18 -0700 Subject: [PATCH] [MIRROR] some less rounding (#8534) Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: CHOMPStation2 --- code/modules/instruments/songs/editor.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/instruments/songs/editor.dm b/code/modules/instruments/songs/editor.dm index f38420fd37..2927b0ddba 100644 --- a/code/modules/instruments/songs/editor.dm +++ b/code/modules/instruments/songs/editor.dm @@ -191,7 +191,7 @@ stop_playing() else if(href_list["setlinearfalloff"]) - var/amount = tgui_input_number(usr, "Set linear sustain duration in seconds", "Linear Sustain Duration") + var/amount = tgui_input_number(usr, "Set linear sustain duration in seconds", "Linear Sustain Duration", round_value=FALSE) if(!isnull(amount)) set_linear_falloff_duration(round(amount * 10, world.tick_lag))