* 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:
FalseIncarnate
2016-06-19 13:24:58 -04:00
committed by Fox McCloud
parent e6a55a498d
commit ae70a7fc69
4 changed files with 12 additions and 2 deletions
+4
View File
@@ -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()
+2
View File
@@ -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()