From 118d7a1dbf136ebef141f05fbc1b09c26043478d Mon Sep 17 00:00:00 2001 From: keronshb Date: Fri, 18 Dec 2020 00:01:11 -0500 Subject: [PATCH] ACTUALLY prevents the clown car from moving onto a space tile ACTUALLY prevents the clown car from moving onto a space tile --- code/modules/vehicles/cars/clowncar.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vehicles/cars/clowncar.dm b/code/modules/vehicles/cars/clowncar.dm index 1b70bbc068..7a7886e999 100644 --- a/code/modules/vehicles/cars/clowncar.dm +++ b/code/modules/vehicles/cars/clowncar.dm @@ -19,7 +19,7 @@ initialize_controller_action_type(/datum/action/vehicle/sealed/horn/clowncar, VEHICLE_CONTROL_DRIVE) -/obj/vehicle/sealed/car/clowncar/vehicle_move(direction) //Prevent it from moving onto space +/obj/vehicle/sealed/car/clowncar/driver_move(mob/user, direction) //Prevent it from moving onto space if(isspaceturf(get_step(src, direction))) return FALSE else