[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>
This commit is contained in:
SkyratBot
2021-10-20 17:51:52 +02:00
committed by GitHub
parent 90d350b867
commit 7d14e46daa
+1 -1
View File
@@ -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)