mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 08:37:43 +01:00
* The speedwagon is now a car * Modularizes edits * Update sealed.dm * Update sealed.dm --------- Co-authored-by: Jacquerel <hnevard@gmail.com> Co-authored-by: Giz <13398309+vinylspiders@users.noreply.github.com>
9 lines
212 B
Plaintext
9 lines
212 B
Plaintext
/obj/vehicle/sealed/mob_try_enter(mob/rider)
|
|
if(!istype(rider))
|
|
return FALSE
|
|
if(HAS_TRAIT(rider, TRAIT_OVERSIZED))
|
|
to_chat(rider, span_warning("You are far too big for this!"))
|
|
return FALSE
|
|
|
|
return ..()
|