mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 04:26:03 +01:00
[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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user