From 1f83efe0f42461fb97008496a691800e216be2ec Mon Sep 17 00:00:00 2001 From: ghostsheet <43085828+ghostsheet@users.noreply.github.com> Date: Thu, 27 Jul 2023 21:46:24 +1000 Subject: [PATCH] Minor tent fix (#4002) # About the pull request Tent height was increased in #3918 Command and Medical tent height was increased However Req and Big tent height was not increased. This PR increases tent height for Req and Big tent # Explain why it's good for the game Whoops... forgot to change these vars --- code/modules/tents/deployed_tents.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/tents/deployed_tents.dm b/code/modules/tents/deployed_tents.dm index 28bf11a38a6a..fc9a69d2366c 100644 --- a/code/modules/tents/deployed_tents.dm +++ b/code/modules/tents/deployed_tents.dm @@ -149,10 +149,10 @@ icon_state = "big_interior" roof_state = "big_top" x_dim = 3 - y_dim = 3 + y_dim = 4 /obj/structure/tent/reqs icon_state = "reqs_interior" roof_state = "reqs_top" x_dim = 4 - y_dim = 3 + y_dim = 4