From 65b673273ee96e89cac83ffa4618dbcda0b5ca5e Mon Sep 17 00:00:00 2001 From: CRUNCH <143041327+Fordoxia@users.noreply.github.com> Date: Thu, 14 Aug 2025 02:02:33 +0100 Subject: [PATCH] Update scooter.dm (#30109) --- code/modules/vehicle/tg_vehicles/scooter.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/vehicle/tg_vehicles/scooter.dm b/code/modules/vehicle/tg_vehicles/scooter.dm index 5872ff69beb..42b24237c82 100644 --- a/code/modules/vehicle/tg_vehicles/scooter.dm +++ b/code/modules/vehicle/tg_vehicles/scooter.dm @@ -84,6 +84,9 @@ initialize_controller_action_type(/datum/action/vehicle/skateboard/kickflip, VEHICLE_CONTROL_DRIVE) /obj/tgvehicle/scooter/skateboard/post_buckle_mob(mob/living/M)//allows skateboards to be non-dense but still allows 2 skateboarders to collide with each other + if(M.pulling) + M.stop_pulling() + to_chat(M, "You can't pull things along while skateboarding!") set_density(TRUE) return ..()