mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 19:47:22 +01:00
Add Wheelcart Sound To More Objs (#29427)
* bo * ba --------- Signed-off-by: Osetrokarasek <78341303+ostrkrs@users.noreply.github.com>
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user