mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-17 21:52:42 +00:00
Merge pull request #6078 from Heroman3003/unbluespacing-vehicles
Fixes resisting out of vehicles causing problems
This commit is contained in:
@@ -904,7 +904,11 @@ default behaviour is:
|
|||||||
|
|
||||||
/mob/living/proc/escape_buckle()
|
/mob/living/proc/escape_buckle()
|
||||||
if(buckled)
|
if(buckled)
|
||||||
buckled.user_unbuckle_mob(src, src)
|
if(istype(buckled, /obj/vehicle))
|
||||||
|
var/obj/vehicle/vehicle = buckled
|
||||||
|
vehicle.unload()
|
||||||
|
else
|
||||||
|
buckled.user_unbuckle_mob(src, src)
|
||||||
|
|
||||||
/mob/living/proc/resist_grab()
|
/mob/living/proc/resist_grab()
|
||||||
var/resisting = 0
|
var/resisting = 0
|
||||||
|
|||||||
Reference in New Issue
Block a user