diff --git a/code/game/gamemodes/nations/flagprocs.dm b/code/game/gamemodes/nations/flagprocs.dm index a6ea1b5281b..439167273ac 100644 --- a/code/game/gamemodes/nations/flagprocs.dm +++ b/code/game/gamemodes/nations/flagprocs.dm @@ -109,36 +109,36 @@ //Nations/Department flags --Nations Gamemode Specific /obj/item/flag/nation/cargo name = "Cargonia flag" - desc = "The flag of the independant, sovereign nation of Cargonia." + desc = "The flag of the independent, sovereign nation of Cargonia." icon_state = "cargoflag" nation = new /datum/nations/cargonia /obj/item/flag/nation/med name = "Medistan flag" - desc = "The flag of the independant, sovereign nation of Medistan." + desc = "The flag of the independent, sovereign nation of Medistan." icon_state = "medflag" nation = new /datum/nations/medistan /obj/item/flag/nation/sec name = "Brigston flag" - desc = "The flag of the independant, sovereign nation of Brigston." + desc = "The flag of the independent, sovereign nation of Brigston." icon_state = "secflag" nation = new /datum/nations/brigston /obj/item/flag/nation/rnd name = "Scientopia flag" - desc = "The flag of the independant, sovereign nation of Scientopia." + desc = "The flag of the independent, sovereign nation of Scientopia." icon_state = "rndflag" nation = new /datum/nations/scientopia /obj/item/flag/nation/atmos name = "Atmosia flag" - desc = "The flag of the independant, sovereign nation of Atmosia." + desc = "The flag of the independent, sovereign nation of Atmosia." icon_state = "atmosflag" nation = new /datum/nations/atmosia /obj/item/flag/nation/command name = "People's Republic of Commandzakstan flag" - desc = "The flag of the independant, sovereign nation of the People's Republic of Commandzakstan." + desc = "The flag of the independent, sovereign nation of the People's Republic of Commandzakstan." icon_state = "ntflag" nation = new /datum/nations/command \ No newline at end of file diff --git a/code/game/objects/items/weapons/cigs_lighters.dm b/code/game/objects/items/weapons/cigs_lighters.dm index f844d2d6be2..591ab0c8fe8 100644 --- a/code/game/objects/items/weapons/cigs_lighters.dm +++ b/code/game/objects/items/weapons/cigs_lighters.dm @@ -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("Without even breaking stride, [user] flips open and lights [src] in one smooth movement.") - playsound(src.loc, 'sound/items/ZippoLight.ogg' 25, 1) + playsound(src.loc, 'sound/items/ZippoLight.ogg') else if(prob(75)) user.visible_message("After a few attempts, [user] manages to light the [src].") @@ -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("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("[user] quietly shuts off the [src].") diff --git a/sound/items/ZippoClose.ogg b/sound/items/ZippoClose.ogg new file mode 100644 index 00000000000..c6dcdbb1ab0 Binary files /dev/null and b/sound/items/ZippoClose.ogg differ diff --git a/sound/items/ZippoLight.ogg b/sound/items/ZippoLight.ogg new file mode 100644 index 00000000000..a6abbef501f Binary files /dev/null and b/sound/items/ZippoLight.ogg differ