You forgot 2 commas, NOW I'm annoyed :D

This commit is contained in:
ZomgPonies
2014-06-09 01:23:12 -04:00
parent d1f2f9c361
commit fb5265d1b1
@@ -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', 25, 1)
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', 25, 1)
else
user.visible_message("<span class='notice'>[user] quietly shuts off the [src].")