From 8c5603875a624d521d38f7e90b3923b332c94b7b Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Sun, 21 Jan 2018 23:49:13 -0500 Subject: [PATCH] Fix ratio join bug --- code/controllers/configuration_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/controllers/configuration_vr.dm b/code/controllers/configuration_vr.dm index e5110a51b4..f1298d4d61 100644 --- a/code/controllers/configuration_vr.dm +++ b/code/controllers/configuration_vr.dm @@ -33,9 +33,9 @@ switch (name) if ("assistants_ratio") - config.assistants_ratio = value + config.assistants_ratio = text2num(value) if ("assistants_assured") - config.assistants_assured = value + config.assistants_assured = text2num(value) if ("chat_webhook_url") config.chat_webhook_url = value if ("chat_webhook_key")