From a4ac86c9de2268d7a0f5cc222a4f091f7f237a5b Mon Sep 17 00:00:00 2001 From: GoldenDarkness55 <103884785+GoldenDarkness55@users.noreply.github.com> Date: Thu, 27 Jul 2023 19:45:55 +0200 Subject: [PATCH] Disallows queen tunneling tunnel.dm --- code/modules/cm_aliens/structures/tunnel.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/cm_aliens/structures/tunnel.dm b/code/modules/cm_aliens/structures/tunnel.dm index a5d623bff189..d985ef205889 100644 --- a/code/modules/cm_aliens/structures/tunnel.dm +++ b/code/modules/cm_aliens/structures/tunnel.dm @@ -220,6 +220,10 @@ to_chat(M, SPAN_XENOWARNING("You can't climb through a tunnel while immobile.")) return XENO_NO_DELAY_ACTION + if(M.caste_type == XENO_CASTE_QUEEN) + to_chat(M, SPAN_XENOWARNING("You're too large to fit in the tunnel!")) + return XENO_NO_DELAY_ACTION + if(!hive.tunnels.len) to_chat(M, SPAN_WARNING("\The [src] doesn't seem to lead anywhere.")) return XENO_NO_DELAY_ACTION