From aa79b9853b4c2be17502626ce62f539a34b5cadd Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Sun, 1 Mar 2020 15:42:41 +0100 Subject: [PATCH] Update living.dm --- code/modules/vore/eating/living.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vore/eating/living.dm b/code/modules/vore/eating/living.dm index 113605d49e..bdd4b67f07 100644 --- a/code/modules/vore/eating/living.dm +++ b/code/modules/vore/eating/living.dm @@ -365,7 +365,7 @@ var/mob/living/tasted = input(src, "Who would you like to lick? (Excluding yourself and those with the preference disabled)", "Licking") as null|anything in choices - if(QDELETED(tasted) || (L.ckey && !(L.client?.prefs.lickable))) + if(QDELETED(tasted) || (tasted.ckey && !(tasted.client?.prefs.lickable))) return setClickCooldown(100)