[MIRROR] September 2024 various fixes (#8920)

Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com>
Co-authored-by: Nadyr <41974248+Darlantanis@users.noreply.github.com>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2
2024-09-07 16:27:57 -07:00
committed by GitHub
parent 4f6614ba16
commit 664b5e84dd
22 changed files with 99 additions and 25 deletions

View File

@@ -69,6 +69,14 @@
update_icon()
return 1
/obj/structure/closet/crate/MouseDrop_T(mob/target, mob/user)
// Adds climbing from drag, You can't put yourself in crates with a drag anyway... Nore anyone else actually.
var/mob/living/H = user
if(istype(H) && can_climb(H) && target == user)
do_climb(target)
else
return ..()
/obj/structure/closet/crate/verb/rotate_clockwise()
set name = "Rotate Crate Clockwise"
set category = "Object"