From 91a2ac1bc06a3d88f64e22df5b95400f65f55570 Mon Sep 17 00:00:00 2001 From: killer653 Date: Tue, 8 Aug 2017 16:18:08 -0400 Subject: [PATCH] Gets rid of runtime spam when size is changed. --- code/modules/vore/resizing/resize_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vore/resizing/resize_vr.dm b/code/modules/vore/resizing/resize_vr.dm index c12e0dcd0f0..b1997617ce5 100644 --- a/code/modules/vore/resizing/resize_vr.dm +++ b/code/modules/vore/resizing/resize_vr.dm @@ -61,7 +61,7 @@ var/const/RESIZE_A_SMALLTINY = (RESIZE_SMALL + RESIZE_TINY) / 2 /mob/living/proc/resize(var/new_size, var/animate = TRUE) if(size_multiplier == new_size) return 1 - ASSERT(new_size >= RESIZE_TINY && new_size <= RESIZE_HUGE) + //ASSERT(new_size >= RESIZE_TINY && new_size <= RESIZE_HUGE) //You served your use. Now scurry off and stop spamming my chat. if(animate) var/matrix/resize = matrix() // Defines the matrix to change the player's size resize.Scale(new_size) //Change the size of the matrix