From a4674739613b24f9e61d20852df42213e934ba52 Mon Sep 17 00:00:00 2001 From: X0-11 Date: Sun, 14 Jul 2024 22:24:19 +0100 Subject: [PATCH] Update vehicle_occupant.dm --- code/modules/halo/vehicles/vehicle_occupant.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/halo/vehicles/vehicle_occupant.dm b/code/modules/halo/vehicles/vehicle_occupant.dm index ce29d388c5864..a2e34d520751b 100644 --- a/code/modules/halo/vehicles/vehicle_occupant.dm +++ b/code/modules/halo/vehicles/vehicle_occupant.dm @@ -132,6 +132,8 @@ to_chat(user,"You are now in the [position] position of [src].") if(position == "driver") add_remove_vehicle_actions(user) + else if(position == "gunner") + comp_prof.give_gunner_weapons(src) return 1 /obj/vehicles/proc/do_seat_switch(var/mob/user,var/position)