diff --git a/code/modules/vore/eating/living_ch.dm b/code/modules/vore/eating/living_ch.dm index 780587c70d..6b8c8598a4 100644 --- a/code/modules/vore/eating/living_ch.dm +++ b/code/modules/vore/eating/living_ch.dm @@ -73,7 +73,7 @@ mob/living/proc/check_vorefootstep(var/m_intent, var/turf/T) set desc = "Transfer liquid from an organ to another or stomach, or into another person or container." set popup_menu = FALSE - if(!canClick() || incapacitated(INCAPACITATION_ALL)) + if(!checkClickCooldown() || incapacitated(INCAPACITATION_ALL)) return FALSE var/mob/living/user = usr @@ -208,4 +208,4 @@ mob/living/proc/check_vorefootstep(var/m_intent, var/turf/T) else soundfile = fancy_release_sounds[RTB.release_sound] if(soundfile) - playsound(src, soundfile, vol = 100, vary = 1, falloff = VORE_SOUND_FALLOFF, preference = /datum/client_preference/eating_noises) \ No newline at end of file + playsound(src, soundfile, vol = 100, vary = 1, falloff = VORE_SOUND_FALLOFF, preference = /datum/client_preference/eating_noises)