diff --git a/code/modules/vore/eating/living.dm b/code/modules/vore/eating/living.dm index f8db539ef8..20a051d0ca 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)