From 89b71ddfc5fc5e9fc6549a3351e18e60fe131e4f Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sun, 16 Aug 2020 15:02:04 -0500 Subject: [PATCH] first and only occupant gets dinked --- code/modules/vehicles/_vehicle.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vehicles/_vehicle.dm b/code/modules/vehicles/_vehicle.dm index 47591bf5b8..3a12e3c2bd 100644 --- a/code/modules/vehicles/_vehicle.dm +++ b/code/modules/vehicles/_vehicle.dm @@ -170,6 +170,6 @@ /obj/vehicle/bullet_act(obj/item/projectile/Proj) //wrapper if (!enclosed && occupants && !Proj.force_hit && (Proj.def_zone == BODY_ZONE_HEAD || Proj.def_zone == BODY_ZONE_CHEST)) //allows bullets to hit drivers - occupants.bullet_act(Proj) //i'm sure that ATV will protect you against a dink, idiot + occupants[1].bullet_act(Proj) // driver dinkage return BULLET_ACT_HIT . = ..()