From c187cded5245d15304236ab88d1a914ad3739770 Mon Sep 17 00:00:00 2001 From: Runa Dacino Date: Tue, 6 Oct 2020 06:37:05 +0200 Subject: [PATCH] Makes it possible to cancel out of Mass Alteration --- code/modules/nifsoft/software/15_misc.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/nifsoft/software/15_misc.dm b/code/modules/nifsoft/software/15_misc.dm index 7cdd364b163..bd0975269d5 100644 --- a/code/modules/nifsoft/software/15_misc.dm +++ b/code/modules/nifsoft/software/15_misc.dm @@ -127,7 +127,7 @@ /datum/nifsoft/sizechange/activate() if((. = ..())) - var/new_size = input("Put the desired size (25-200%)", "Set Size", 200) as num + var/new_size = input("Put the desired size (25-200%)", "Set Size", 200) as num|null if (!ISINRANGE(new_size,25,200)) to_chat(nif.human,"The safety features of the NIF Program prevent you from choosing this size.")