From befc1675934dc59b179af2a03620ca95567e625b Mon Sep 17 00:00:00 2001 From: Skies-Of-Blue <86762641+Skies-Of-Blue@users.noreply.github.com> Date: Sun, 30 Jun 2024 14:43:54 -0700 Subject: [PATCH] Wheelchairs Can Be Rotated Now (#3162) ## About The Pull Request Title ## Why It's Good For The Game Intended behavior held back by two missing lines of code. ## Changelog :cl: fix: you can now rotate wheelchairs, just as god intended /:cl: --------- Signed-off-by: Skies-Of-Blue <86762641+Skies-Of-Blue@users.noreply.github.com> Co-authored-by: Theos --- code/modules/vehicles/wheelchair.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/vehicles/wheelchair.dm b/code/modules/vehicles/wheelchair.dm index a22b68c5a1c8..fc5b6503f90c 100644 --- a/code/modules/vehicles/wheelchair.dm +++ b/code/modules/vehicles/wheelchair.dm @@ -104,8 +104,8 @@ /obj/vehicle/ridden/wheelchair/proc/can_user_rotate(mob/living/user) var/mob/living/L = user if(istype(L)) - if(!user.canUseTopic(src, BE_CLOSE, ismonkey(user))) - return FALSE + if(user.canUseTopic(src, BE_CLOSE, ismonkey(user))) + return TRUE if(isobserver(user) && CONFIG_GET(flag/ghost_interaction)) return TRUE return FALSE