THERE IS NO OGG! I LIED! (#87808)

Fixes mislabeled audio files. @francinum and I found this while working
on https://github.com/tgstation/rust-g/pull/192


![image](https://github.com/user-attachments/assets/2d564842-876a-4915-9eba-a5d6847d81b3)
https://www.youtube.com/watch?v=plrlrGtoiik
This commit is contained in:
Kapu1178
2024-11-17 05:12:29 +01:00
committed by GitHub
parent 10d9355f2a
commit a9864a5268
5 changed files with 6 additions and 6 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.ogg', 50, TRUE)
playsound(user, 'sound/items/duct_tape/duct_tape_rip.mp3', 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.ogg', 50, TRUE)
playsound(user, 'sound/items/duct_tape/duct_tape_snap.mp3', 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.ogg', 50, TRUE)
playsound(user, 'sound/items/duct_tape/duct_tape_rip.mp3', 50, TRUE)
if(do_after(user, 3 SECONDS, target=target))
playsound(user, 'sound/items/duct_tape/duct_tape_snap.ogg', 50, TRUE)
playsound(user, 'sound/items/duct_tape/duct_tape_snap.mp3', 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.ogg', 50, TRUE)
playsound(user, 'sound/items/duct_tape/duct_tape_rip.mp3', 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.ogg', 60)
playsound(get_turf(user), 'sound/items/duct_tape/duct_tape_snap.mp3', 60)
icon_state = "[sealed_icon]"
update_appearance()