From 7ad3b6b5383f0c3fa7c14ac9d6935b3b7b6753e7 Mon Sep 17 00:00:00 2001 From: Verkister Date: Sun, 18 Mar 2018 13:39:13 +0200 Subject: [PATCH] Adds a pref verb to switch your scaling mode ingame. -You no longer have to endure the respawn hassle in order to find out which mode fits your character better. --- code/modules/vore/eating/living_vr.dm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index d433572837d..5eeedd3ef54 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -28,6 +28,7 @@ /hook/living_new/proc/vore_setup(mob/living/M) M.verbs += /mob/living/proc/escapeOOC M.verbs += /mob/living/proc/lick + M.verbs += /mob/living/proc/switch_scaling if(M.no_vore) //If the mob isn't supposed to have a stomach, let's not give it an insidepanel so it can make one for itself, or a stomach. return 1 M.verbs += /mob/living/proc/insidePanel @@ -581,4 +582,10 @@ to_chat(src, "You can taste the flavor of garbage. Delicious.") return to_chat(src, "This item is not appropriate for ethical consumption.") - return \ No newline at end of file + return + +/mob/living/proc/switch_scaling() + set name = "Switch scaling mode" + set category = "Preferences" + set desc = "Switch sharp/fuzzy scaling for current mob." + appearance_flags ^= PIXEL_SCALE