Merge pull request #3981 from Citadel-Station-13/upstream-merge-32778

[MIRROR] Makes you turn when pulling and adds sound to rolling bed and chair
This commit is contained in:
deathride58
2017-11-17 04:52:22 +00:00
committed by GitHub
4 changed files with 14 additions and 1 deletions
@@ -95,6 +95,10 @@
M.pixel_x = M.get_standard_pixel_x_offset(M.lying)
M.pixel_y = M.get_standard_pixel_y_offset(M.lying)
/obj/structure/bed/roller/Moved()
. = ..()
if(has_gravity())
playsound(src, 'sound/effects/roll.ogg', 100, 1)
/obj/item/roller
name = "roller bed"
@@ -194,6 +194,12 @@
buildstackamount = 5
item_chair = null
/obj/structure/chair/office/Moved()
. = ..()
if(has_gravity())
playsound(src, 'sound/effects/roll.ogg', 100, 1)
/obj/structure/chair/office/light
icon_state = "officechair_white"