adds new sounds (the not stupid version) (#6307)

This commit is contained in:
alsoandanswer
2019-05-05 23:51:08 +02:00
committed by Werner
parent 64451cdb60
commit 1bab746d17
315 changed files with 718 additions and 164 deletions
+2 -2
View File
@@ -2093,7 +2093,7 @@ All custom items with worn sprites must follow the contained sprite system: http
if(!lit)
usr.visible_message("<span class='notice'>With a snap of \the [usr]'s fingers, a small lighter flame sparks from \his index fingers!</span>")
lit = TRUE
playsound(src.loc, 'sound/items/lighter_on.ogg', 75, 1)
playsound(src.loc, 'sound/items/cigs_lighters/zippo_on.ogg', 75, 1)
update_icon()
usr.update_inv_gloves()
return
@@ -2101,7 +2101,7 @@ All custom items with worn sprites must follow the contained sprite system: http
else
usr.visible_message("<span class='notice'>With the flick of \the [usr] wrists and the pinch of \his fingers, the glove's flames are extinguished.</span>")
lit = FALSE
playsound(src.loc, 'sound/items/lighter_off.ogg', 75, 1)
playsound(src.loc, 'sound/items/cigs_lighters/zippo_off.ogg', 75, 1)
update_icon()
usr.update_inv_gloves()
return