Fixed lack of Zippo volume

This commit is contained in:
Michael Slettevold
2014-06-08 20:19:33 -07:00
parent a30cd63810
commit 47ec7fc3f1
4 changed files with 8 additions and 8 deletions
@@ -398,7 +398,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM
item_state = icon_on
if(istype(src, /obj/item/weapon/lighter/zippo) )
user.visible_message("<span class='rose'>Without even breaking stride, [user] flips open and lights [src] in one smooth movement.</span>")
playsound(src.loc, 'sound/items/ZippoLight.ogg' 25, 1)
playsound(src.loc, 'sound/items/ZippoLight.ogg')
else
if(prob(75))
user.visible_message("<span class='notice'>After a few attempts, [user] manages to light the [src].</span>")
@@ -415,7 +415,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM
item_state = icon_off
if(istype(src, /obj/item/weapon/lighter/zippo) )
user.visible_message("<span class='rose'>You hear a quiet click, as [user] shuts off [src] without even looking at what they're doing. Wow.")
playsound(src.loc, 'sound/items/ZippoClose.ogg' 25, 1)
playsound(src.loc, 'sound/items/ZippoClose.ogg')
else
user.visible_message("<span class='notice'>[user] quietly shuts off the [src].")