diff --git a/code/modules/vore/eating/vorepanel.dm b/code/modules/vore/eating/vorepanel.dm index a3adc89352..8e8cfc4935 100644 --- a/code/modules/vore/eating/vorepanel.dm +++ b/code/modules/vore/eating/vorepanel.dm @@ -466,8 +466,6 @@ if(!(target in host.vore_selected)) return TRUE // Not in our X anymore, update UI var/list/available_options = list("Examine", "Eject", "Move") - if(ishuman(target)) - available_options += "Transform" intent = tgui_alert(user, "What would you like to do with [target]?", "Vore Pick", available_options) switch(intent) if("Examine") @@ -498,17 +496,6 @@ host.vore_selected.transfer_contents(target, choice) return TRUE - if("Transform") - if(host.stat) - to_chat(user,"You can't do that in your state!") - return TRUE - - var/mob/living/carbon/human/H = target - if(!istype(H)) - return - - return TRUE - /datum/vore_look/proc/set_attr(mob/user, params) if(!host.vore_selected) tgui_alert_async(usr, "No belly selected to modify.")