From 7d14e46daa0fc09d7fae2710f6d3fa88e89bd9aa Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 20 Oct 2021 17:51:52 +0200 Subject: [PATCH] [MIRROR] You can now enter da vim once again [MDB IGNORE] (#8938) * You can now enter da vim (#62211) Small fix, it checks if you're either not a simple animal or not a simple mob, if you're not one of either, you can't enter. * You can now enter da vim once again Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> --- code/modules/vehicles/cars/vim.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vehicles/cars/vim.dm b/code/modules/vehicles/cars/vim.dm index 50707478a9f..b720ea13860 100644 --- a/code/modules/vehicles/cars/vim.dm +++ b/code/modules/vehicles/cars/vim.dm @@ -33,7 +33,7 @@ return ..() /obj/vehicle/sealed/car/vim/mob_try_enter(mob/entering) - if(!isanimal(entering) || !isbasicmob(entering)) + if(!isanimal(entering) && !isbasicmob(entering)) return FALSE var/mob/living/animal_or_basic = entering if(animal_or_basic.mob_size != MOB_SIZE_TINY)