mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
Bug Fixes (#4714)
* Bug Fixes Fixes #4616 - All ladders are now anchored and cannot be dragged, including dive points. Fixes #4663 - Trying to fill a full container from a toilet will inform you the container is full, and thus fail. Fixes #4705 - Being gibbed/dusted/melted will unbuckle the victim prior to their gruesome fate, allowing their spirit freedom to no longer haunt the buckles that bound their mortal form. * Because apparently we shouldn't trust people to use "delete" properly
This commit is contained in:
committed by
Fox McCloud
parent
e6a55a498d
commit
ae70a7fc69
@@ -76,6 +76,10 @@
|
||||
|
||||
/mob/proc/death(gibbed)
|
||||
|
||||
//Makes it so gib/dust/melt all unbuckle their victims from anything they may be buckled to to avoid breaking beds/chairs/etc
|
||||
if(gibbed && buckled)
|
||||
buckled.unbuckle_mob()
|
||||
|
||||
//Quick fix for corpses kept propped up in chairs. ~Z
|
||||
drop_r_hand()
|
||||
drop_l_hand()
|
||||
|
||||
@@ -12,6 +12,8 @@
|
||||
for(var/mob/dead/observer/M in following_mobs)
|
||||
M.following = null
|
||||
following_mobs = null
|
||||
if(buckled)
|
||||
buckled.unbuckle_mob()
|
||||
return ..()
|
||||
|
||||
/mob/New()
|
||||
|
||||
Reference in New Issue
Block a user