diff --git a/code/modules/antagonists/morph/morph_stomach.dm b/code/modules/antagonists/morph/morph_stomach.dm index 7a4d10c74b48f..9d4e621a2b862 100644 --- a/code/modules/antagonists/morph/morph_stomach.dm +++ b/code/modules/antagonists/morph/morph_stomach.dm @@ -72,6 +72,9 @@ /datum/morph_stomach/ui_act(action, params) if(..()) return + if(morph.movement_type & VENTCRAWLING) + to_chat(morph, "It's too cramped, you can't do that here!.") + return var/ref = params["id"] var/atom/movable/target = locate(ref) in morph.contents if(!target || (!isliving(target) && !isitem(target)))