Add Wheelcart Sound To More Objs (#29427)

* bo

* ba

---------

Signed-off-by: Osetrokarasek <78341303+ostrkrs@users.noreply.github.com>
This commit is contained in:
Osetrokarasek
2025-06-18 20:31:24 +00:00
committed by GitHub
parent 086e77c46d
commit 8b3de4dd3e
9 changed files with 50 additions and 2 deletions
@@ -358,6 +358,12 @@
icon_opened = "trashcart_open"
icon_closed = "trashcart"
/obj/structure/closet/crate/trashcart/Move(NewLoc, direct)
. = ..()
if(!.)
return
playsound(loc, pick('sound/items/cartwheel1.ogg', 'sound/items/cartwheel2.ogg'), 100, TRUE, ignore_walls = FALSE)
/obj/structure/closet/crate/medical
desc = "A medical crate."
name = "medical crate"
+7 -1
View File
@@ -120,7 +120,7 @@
put_in_cart(user, used)
return
item_present = TRUE
if(istype(used, /obj/item/storage/bag/trash))
if(!my_bag)
my_bag = used
@@ -291,3 +291,9 @@
reagentsImage.icon_state = "cart_reagents4"
reagentsImage.icon += mix_color_from_reagents(reagents.reagent_list)
. += reagentsImage
/obj/structure/janitorialcart/Move(NewLoc, direct)
. = ..()
if(!.)
return
playsound(loc, pick('sound/items/cartwheel1.ogg', 'sound/items/cartwheel2.ogg'), 100, TRUE, ignore_walls = FALSE)
@@ -167,6 +167,12 @@
else
return ..()
/obj/structure/bed/roller/Move(NewLoc, direct)
. = ..()
if(!.)
return
playsound(loc, pick('sound/items/cartwheel1.ogg', 'sound/items/cartwheel2.ogg'), 75, TRUE, ignore_walls = FALSE)
/obj/structure/bed/roller/post_buckle_mob(mob/living/M)
density = TRUE
icon_state = icon_up
@@ -298,6 +298,12 @@
else
cut_overlay(armrest)
/obj/structure/chair/office/Move(NewLoc, direct)
. = ..()
if(!.)
return
playsound(loc, pick('sound/items/cartwheel1.ogg', 'sound/items/cartwheel2.ogg'), 75, TRUE, ignore_walls = FALSE)
/obj/structure/chair/office/dark
icon_state = "officechair_dark"