From 28b7b1622c9cb292afd9a8bfe8a3116ba0cf331f Mon Sep 17 00:00:00 2001 From: JoanRisu Date: Wed, 15 Feb 2017 01:09:34 +0900 Subject: [PATCH] Adds the Humvee into the game with basic features for playtesting! --- code/modules/vehicles/rover_vr.dm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/modules/vehicles/rover_vr.dm b/code/modules/vehicles/rover_vr.dm index df06764a07b..9185df24dc8 100644 --- a/code/modules/vehicles/rover_vr.dm +++ b/code/modules/vehicles/rover_vr.dm @@ -297,9 +297,14 @@ /obj/vehicle/train/rover/engine/unload(var/mob/user, var/direction) var/mob/living/carbon/human/C = load + + if(ismob(load)) unbuckle_mob(load) - C.alpha = 255 + C.alpha = 255 + + load = null + //Load the object "inside" the trolley and add an overlay of it. //This prevents the object from being interacted with until it has