THERE IS OGG! I DIDN'T LIE (#87975)

## About The Pull Request
Converted `duct_tape_snap` and `duct_tape_rip` from mp3 to ogg, 441,00
Hz, mono.

## Why It's Good For The Game
Sound standards.

## Changelog
N/A
This commit is contained in:
Ghom
2024-11-18 14:08:49 +02:00
committed by GitHub
parent 95c516bb08
commit 375b57338d
8 changed files with 7 additions and 7 deletions
+4 -4
View File
@@ -29,14 +29,14 @@
if(user.get_inactive_held_item() == src)
if(is_zero_amount(delete_if_zero = TRUE))
return
playsound(user, 'sound/items/duct_tape/duct_tape_rip.mp3', 50, TRUE)
playsound(user, 'sound/items/duct_tape/duct_tape_rip.ogg', 50, TRUE)
if(!do_after(user, 1 SECONDS))
return
var/new_tape_gag = new tape_gag(src)
user.put_in_hands(new_tape_gag)
use(1)
to_chat(user, span_notice("You rip off a piece of tape."))
playsound(user, 'sound/items/duct_tape/duct_tape_snap.mp3', 50, TRUE)
playsound(user, 'sound/items/duct_tape/duct_tape_snap.ogg', 50, TRUE)
return TRUE
return ..()
@@ -53,10 +53,10 @@
return ITEM_INTERACT_BLOCKING
user.visible_message(span_notice("[user] begins wrapping [target] with [src]."), span_notice("You begin wrapping [target] with [src]."))
playsound(user, 'sound/items/duct_tape/duct_tape_rip.mp3', 50, TRUE)
playsound(user, 'sound/items/duct_tape/duct_tape_rip.ogg', 50, TRUE)
if(do_after(user, 3 SECONDS, target=target))
playsound(user, 'sound/items/duct_tape/duct_tape_snap.mp3', 50, TRUE)
playsound(user, 'sound/items/duct_tape/duct_tape_snap.ogg', 50, TRUE)
use(1)
if(istype(target, /obj/item/clothing/gloves/fingerless))
var/obj/item/clothing/gloves/tackler/offbrand/O = new /obj/item/clothing/gloves/tackler/offbrand
+1 -1
View File
@@ -62,7 +62,7 @@
. = ..()
if(user.get_item_by_slot(ITEM_SLOT_MASK) != src)
return
playsound(user, 'sound/items/duct_tape/duct_tape_rip.mp3', 50, TRUE)
playsound(user, 'sound/items/duct_tape/duct_tape_rip.ogg', 50, TRUE)
if(harmful_strip)
user.apply_damage(stripping_damage, BRUTE, BODY_ZONE_HEAD)
INVOKE_ASYNC(user, TYPE_PROC_REF(/mob, emote), "scream")
+1 -1
View File
@@ -136,7 +136,7 @@
cracked = FALSE
has_been_sealed = TRUE
contents_hidden = TRUE
playsound(get_turf(user), 'sound/items/duct_tape/duct_tape_snap.mp3', 60)
playsound(get_turf(user), 'sound/items/duct_tape/duct_tape_snap.ogg', 60)
icon_state = "[sealed_icon]"
update_appearance()
+1 -1
View File
@@ -50,7 +50,7 @@ https://freesound.org/s/431740/ (CC 0)
chainsaw_stop.ogg is adapted from kyles "chainsaw sawing short cuts +stop.flac" (CC 0)
https://freesound.org/people/kyles/sounds/453256/
clock.mp3 is adapted from Tetrisrocker's "Clock", which uses CC Attributions 0
clock.ogg is adapted from Tetrisrocker's "Clock", which uses CC Attributions 0
https://freesound.org/people/Tetrisrocker/sounds/458627/
ark_activation.ogg is taken from ScottFerguson1's "Cucko Clock edited version", which is licensed under CC Attribution 3.0
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.