From 15f961958e1d6e8f3c3242ef5dcfce71db61df29 Mon Sep 17 00:00:00 2001 From: Ashe Higgs Date: Mon, 8 Jan 2018 04:50:28 -0500 Subject: [PATCH 1/8] Fixes vitality matrices giving massively more vitality than they should (#33768) * Fixes vitality matrix shenanigans * Replaces the spawn_dust() with a variable check * Update clock_sigils.dm --- code/game/gamemodes/clock_cult/clock_effects/clock_sigils.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/clock_cult/clock_effects/clock_sigils.dm b/code/game/gamemodes/clock_cult/clock_effects/clock_sigils.dm index 3237cf5d35..e60b72073f 100644 --- a/code/game/gamemodes/clock_cult/clock_effects/clock_sigils.dm +++ b/code/game/gamemodes/clock_cult/clock_effects/clock_sigils.dm @@ -278,6 +278,7 @@ animate(src, alpha = 255, time = 10, flags = ANIMATION_END_NOW) //we may have a previous animation going. finish it first, then do this one without delay. sleep(10) //as long as they're still on the sigil and are either not a servant or they're a servant AND it has remaining vitality + var/consumed_vitality while(L && (!is_servant_of_ratvar(L) || (is_servant_of_ratvar(L) && (GLOB.ratvar_awakens || GLOB.clockwork_vitality))) && get_turf(L) == get_turf(src) && !L.buckled) sigil_active = TRUE if(animation_number >= 4) @@ -286,7 +287,8 @@ animation_number++ if(!is_servant_of_ratvar(L)) var/vitality_drained = 0 - if(L.stat == DEAD) + if(L.stat == DEAD && !consumed_vitality) + consumed_vitality = TRUE //Prevent the target from being consumed multiple times vitality_drained = L.maxHealth var/obj/effect/temp_visual/ratvar/sigil/vitality/V = new /obj/effect/temp_visual/ratvar/sigil/vitality(get_turf(src)) animate(V, alpha = 0, transform = matrix()*2, time = 8) From f54854bca88eee3e154071707fd31ebef61dcb65 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Mon, 8 Jan 2018 05:39:00 -0500 Subject: [PATCH 3/8] Updates test areas debug command (#34074) * Sanity check for test areas debug command * Shifted to popup window --- code/modules/admin/verbs/debug.dm | 64 +++++++++++++++++++++++-------- 1 file changed, 47 insertions(+), 17 deletions(-) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 0fe79e10de..6b00081be0 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -507,6 +507,7 @@ GLOBAL_PROTECT(LastAdminCalledProc) set category = "Mapping" set name = "Test Areas" + var/list/dat = list() var/list/areas_all = list() var/list/areas_with_APC = list() var/list/areas_with_multiple_APCs = list() @@ -518,6 +519,9 @@ GLOBAL_PROTECT(LastAdminCalledProc) var/list/areas_with_camera = list() var/list/station_areas_blacklist = typecacheof(list(/area/holodeck/rec_center, /area/shuttle, /area/engine/supermatter, /area/science/test_area, /area/space, /area/solar, /area/mine, /area/ruin)) + if(on_station) + dat += "Only checking areas on station z-levels.

" + for(var/area/A in world) if(on_station) var/turf/picked = safepick(get_area_turfs(A.type)) @@ -529,6 +533,9 @@ GLOBAL_PROTECT(LastAdminCalledProc) for(var/obj/machinery/power/apc/APC in GLOB.apcs_list) var/area/A = APC.area + if(!A) //This is usually an indicator that the machines subsystem hasn't finished initializing. + dat += "Skipped over [APC] in invalid location, [APC.loc]. Game likely hasn't finished setting up yet.
" + continue if(!(A.type in areas_with_APC)) areas_with_APC.Add(A.type) else if(A.type in areas_all) @@ -536,31 +543,49 @@ GLOBAL_PROTECT(LastAdminCalledProc) for(var/obj/machinery/airalarm/AA in GLOB.machines) var/area/A = get_area(AA) + if(!A) //Make sure the target isn't inside an object, which results in runtimes. + dat += "Skipped over [AA] in invalid location, [AA.loc].
" + continue if(!(A.type in areas_with_air_alarm)) areas_with_air_alarm.Add(A.type) for(var/obj/machinery/requests_console/RC in GLOB.machines) var/area/A = get_area(RC) + if(!A) + dat += "Skipped over [RC] in invalid location, [RC.loc].
" + continue if(!(A.type in areas_with_RC)) areas_with_RC.Add(A.type) for(var/obj/machinery/light/L in GLOB.machines) var/area/A = get_area(L) + if(!A) + dat += "Skipped over [L] in invalid location, [L.loc].
" + continue if(!(A.type in areas_with_light)) areas_with_light.Add(A.type) for(var/obj/machinery/light_switch/LS in GLOB.machines) var/area/A = get_area(LS) + if(!A) + dat += "Skipped over [LS] in invalid location, [LS.loc].
" + continue if(!(A.type in areas_with_LS)) areas_with_LS.Add(A.type) for(var/obj/item/device/radio/intercom/I in GLOB.machines) var/area/A = get_area(I) + if(!A) + dat += "Skipped over [I] in invalid location, [I.loc].
" + continue if(!(A.type in areas_with_intercom)) areas_with_intercom.Add(A.type) for(var/obj/machinery/camera/C in GLOB.machines) var/area/A = get_area(C) + if(!A) + dat += "Skipped over [C] in invalid location, [C.loc].
" + continue if(!(A.type in areas_with_camera)) areas_with_camera.Add(A.type) @@ -573,47 +598,52 @@ GLOBAL_PROTECT(LastAdminCalledProc) var/list/areas_without_camera = areas_all - areas_with_camera if(areas_without_APC.len) - to_chat(world, "AREAS WITHOUT AN APC:") + dat += "

AREAS WITHOUT AN APC:

" for(var/areatype in areas_without_APC) - to_chat(world, "* [areatype]") + dat += "[areatype]
" if(areas_with_multiple_APCs.len) - to_chat(world, "AREAS WITH MULTIPLE APCS:") + dat += "

AREAS WITH MULTIPLE APCS:

" for(var/areatype in areas_with_multiple_APCs) - to_chat(world,"* [areatype]") + dat += "[areatype]
" if(areas_without_air_alarm.len) - to_chat(world, "AREAS WITHOUT AN AIR ALARM:") + dat += "

AREAS WITHOUT AN AIR ALARM:

" for(var/areatype in areas_without_air_alarm) - to_chat(world, "* [areatype]") + dat += "[areatype]
" if(areas_without_RC.len) - to_chat(world, "AREAS WITHOUT A REQUEST CONSOLE:") + dat += "

AREAS WITHOUT A REQUEST CONSOLE:

" for(var/areatype in areas_without_RC) - to_chat(world, "* [areatype]") + dat += "[areatype]
" if(areas_without_light.len) - to_chat(world, "AREAS WITHOUT ANY LIGHTS:") + dat += "

AREAS WITHOUT ANY LIGHTS:

" for(var/areatype in areas_without_light) - to_chat(world, "* [areatype]") + dat += "[areatype]
" if(areas_without_LS.len) - to_chat(world, "AREAS WITHOUT A LIGHT SWITCH:") + dat += "

AREAS WITHOUT A LIGHT SWITCH:

" for(var/areatype in areas_without_LS) - to_chat(world, "* [areatype]") + dat += "[areatype]
" if(areas_without_intercom.len) - to_chat(world, "AREAS WITHOUT ANY INTERCOMS:") + dat += "

AREAS WITHOUT ANY INTERCOMS:

" for(var/areatype in areas_without_intercom) - to_chat(world, "* [areatype]") + dat += "[areatype]
" if(areas_without_camera.len) - to_chat(world, "AREAS WITHOUT ANY CAMERAS:") + dat += "

AREAS WITHOUT ANY CAMERAS:

" for(var/areatype in areas_without_camera) - to_chat(world, "* [areatype]") + dat += "[areatype]
" if(!(areas_with_APC.len || areas_with_multiple_APCs.len || areas_with_air_alarm.len || areas_with_RC.len || areas_with_light.len || areas_with_LS.len || areas_with_intercom.len || areas_with_camera.len)) - to_chat(world, "No problem areas!") + dat += "No problem areas!" + + var/datum/browser/popup = new(usr, "testareas", "Test Areas", 500, 750) + popup.set_content(dat.Join()) + popup.open() + /client/proc/cmd_admin_areatest_station() set category = "Mapping" From e5c0577284df640ec338daab4e72bf0df32d2910 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 8 Jan 2018 14:04:11 -0600 Subject: [PATCH 5/8] Automatic changelog generation for PR #4717 [ci skip] --- html/changelogs/AutoChangeLog-pr-4717.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-4717.yml diff --git a/html/changelogs/AutoChangeLog-pr-4717.yml b/html/changelogs/AutoChangeLog-pr-4717.yml new file mode 100644 index 0000000000..ec775d7260 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-4717.yml @@ -0,0 +1,4 @@ +author: "Xhuis" +delete-after: True +changes: + - bugfix: "Vitality matrices will no longer go off multiple times for one corpse." From 002f33a2b2cff8f5e0e6567cc4a77d1967a140fd Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 8 Jan 2018 14:04:30 -0600 Subject: [PATCH 6/8] Automatic changelog generation for PR #4718 [ci skip] --- html/changelogs/AutoChangeLog-pr-4718.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-4718.yml diff --git a/html/changelogs/AutoChangeLog-pr-4718.yml b/html/changelogs/AutoChangeLog-pr-4718.yml new file mode 100644 index 0000000000..637908aa12 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-4718.yml @@ -0,0 +1,4 @@ +author: "ShizCalev" +delete-after: True +changes: + - bugfix: "The test areas debug command now works again!" From b31ef1699aca5181e250771383d8f621dcb24656 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 8 Jan 2018 15:21:18 -0500 Subject: [PATCH 7/8] part 1 of trying to fix voresound compiling errors --- .../death_01.ogg | Bin .../death_02.ogg | Bin .../death_03.ogg | Bin .../death_04.ogg | Bin .../death_05.ogg | Bin .../death_06.ogg | Bin .../death_07.ogg | Bin .../death_08.ogg | Bin .../death_09.ogg | Bin .../death_10.ogg | Bin .../death_11.ogg | Bin .../death_12.ogg | Bin .../death_13.ogg | Bin .../digest_01.ogg | Bin .../digest_02.ogg | Bin .../digest_03.ogg | Bin .../digest_04.ogg | Bin .../digest_05.ogg | Bin .../digest_06.ogg | Bin .../digest_07.ogg | Bin .../digest_08.ogg | Bin .../digest_09.ogg | Bin .../digest_10.ogg | Bin .../digest_11.ogg | Bin .../digest_12.ogg | Bin .../digest_13.ogg | Bin .../digest_14.ogg | Bin .../digest_15.ogg | Bin .../digest_16.ogg | Bin .../digest_17.ogg | Bin .../digest_18.ogg | Bin .../escape.ogg | Bin .../insertion_01.ogg | Bin .../insertion_02.ogg | Bin .../{Prey => isweartogodthisbettercompile}/loop.ogg | Bin .../schlorp.ogg | Bin .../squish_01.ogg | Bin .../squish_02.ogg | Bin .../squish_03.ogg | Bin .../squish_04.ogg | Bin .../stomachmove.ogg | Bin .../struggle_01.ogg | Bin .../struggle_02.ogg | Bin .../struggle_03.ogg | Bin .../struggle_04.ogg | Bin .../struggle_05.ogg | Bin .../swallow_01.ogg | Bin .../swallow_02.ogg | Bin .../taurswallow.ogg | Bin 49 files changed, 0 insertions(+), 0 deletions(-) rename sound/vore/{Prey => isweartogodthisbettercompile}/death_01.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/death_02.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/death_03.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/death_04.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/death_05.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/death_06.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/death_07.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/death_08.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/death_09.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/death_10.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/death_11.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/death_12.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/death_13.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_01.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_02.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_03.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_04.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_05.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_06.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_07.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_08.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_09.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_10.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_11.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_12.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_13.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_14.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_15.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_16.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_17.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/digest_18.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/escape.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/insertion_01.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/insertion_02.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/loop.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/schlorp.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/squish_01.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/squish_02.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/squish_03.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/squish_04.ogg (100%) rename sound/vore/{prey => isweartogodthisbettercompile}/stomachmove.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/struggle_01.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/struggle_02.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/struggle_03.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/struggle_04.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/struggle_05.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/swallow_01.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/swallow_02.ogg (100%) rename sound/vore/{Prey => isweartogodthisbettercompile}/taurswallow.ogg (100%) diff --git a/sound/vore/Prey/death_01.ogg b/sound/vore/isweartogodthisbettercompile/death_01.ogg similarity index 100% rename from sound/vore/Prey/death_01.ogg rename to sound/vore/isweartogodthisbettercompile/death_01.ogg diff --git a/sound/vore/Prey/death_02.ogg b/sound/vore/isweartogodthisbettercompile/death_02.ogg similarity index 100% rename from sound/vore/Prey/death_02.ogg rename to sound/vore/isweartogodthisbettercompile/death_02.ogg diff --git a/sound/vore/Prey/death_03.ogg b/sound/vore/isweartogodthisbettercompile/death_03.ogg similarity index 100% rename from sound/vore/Prey/death_03.ogg rename to sound/vore/isweartogodthisbettercompile/death_03.ogg diff --git a/sound/vore/Prey/death_04.ogg b/sound/vore/isweartogodthisbettercompile/death_04.ogg similarity index 100% rename from sound/vore/Prey/death_04.ogg rename to sound/vore/isweartogodthisbettercompile/death_04.ogg diff --git a/sound/vore/Prey/death_05.ogg b/sound/vore/isweartogodthisbettercompile/death_05.ogg similarity index 100% rename from sound/vore/Prey/death_05.ogg rename to sound/vore/isweartogodthisbettercompile/death_05.ogg diff --git a/sound/vore/Prey/death_06.ogg b/sound/vore/isweartogodthisbettercompile/death_06.ogg similarity index 100% rename from sound/vore/Prey/death_06.ogg rename to sound/vore/isweartogodthisbettercompile/death_06.ogg diff --git a/sound/vore/Prey/death_07.ogg b/sound/vore/isweartogodthisbettercompile/death_07.ogg similarity index 100% rename from sound/vore/Prey/death_07.ogg rename to sound/vore/isweartogodthisbettercompile/death_07.ogg diff --git a/sound/vore/Prey/death_08.ogg b/sound/vore/isweartogodthisbettercompile/death_08.ogg similarity index 100% rename from sound/vore/Prey/death_08.ogg rename to sound/vore/isweartogodthisbettercompile/death_08.ogg diff --git a/sound/vore/Prey/death_09.ogg b/sound/vore/isweartogodthisbettercompile/death_09.ogg similarity index 100% rename from sound/vore/Prey/death_09.ogg rename to sound/vore/isweartogodthisbettercompile/death_09.ogg diff --git a/sound/vore/Prey/death_10.ogg b/sound/vore/isweartogodthisbettercompile/death_10.ogg similarity index 100% rename from sound/vore/Prey/death_10.ogg rename to sound/vore/isweartogodthisbettercompile/death_10.ogg diff --git a/sound/vore/Prey/death_11.ogg b/sound/vore/isweartogodthisbettercompile/death_11.ogg similarity index 100% rename from sound/vore/Prey/death_11.ogg rename to sound/vore/isweartogodthisbettercompile/death_11.ogg diff --git a/sound/vore/Prey/death_12.ogg b/sound/vore/isweartogodthisbettercompile/death_12.ogg similarity index 100% rename from sound/vore/Prey/death_12.ogg rename to sound/vore/isweartogodthisbettercompile/death_12.ogg diff --git a/sound/vore/Prey/death_13.ogg b/sound/vore/isweartogodthisbettercompile/death_13.ogg similarity index 100% rename from sound/vore/Prey/death_13.ogg rename to sound/vore/isweartogodthisbettercompile/death_13.ogg diff --git a/sound/vore/Prey/digest_01.ogg b/sound/vore/isweartogodthisbettercompile/digest_01.ogg similarity index 100% rename from sound/vore/Prey/digest_01.ogg rename to sound/vore/isweartogodthisbettercompile/digest_01.ogg diff --git a/sound/vore/Prey/digest_02.ogg b/sound/vore/isweartogodthisbettercompile/digest_02.ogg similarity index 100% rename from sound/vore/Prey/digest_02.ogg rename to sound/vore/isweartogodthisbettercompile/digest_02.ogg diff --git a/sound/vore/Prey/digest_03.ogg b/sound/vore/isweartogodthisbettercompile/digest_03.ogg similarity index 100% rename from sound/vore/Prey/digest_03.ogg rename to sound/vore/isweartogodthisbettercompile/digest_03.ogg diff --git a/sound/vore/Prey/digest_04.ogg b/sound/vore/isweartogodthisbettercompile/digest_04.ogg similarity index 100% rename from sound/vore/Prey/digest_04.ogg rename to sound/vore/isweartogodthisbettercompile/digest_04.ogg diff --git a/sound/vore/Prey/digest_05.ogg b/sound/vore/isweartogodthisbettercompile/digest_05.ogg similarity index 100% rename from sound/vore/Prey/digest_05.ogg rename to sound/vore/isweartogodthisbettercompile/digest_05.ogg diff --git a/sound/vore/Prey/digest_06.ogg b/sound/vore/isweartogodthisbettercompile/digest_06.ogg similarity index 100% rename from sound/vore/Prey/digest_06.ogg rename to sound/vore/isweartogodthisbettercompile/digest_06.ogg diff --git a/sound/vore/Prey/digest_07.ogg b/sound/vore/isweartogodthisbettercompile/digest_07.ogg similarity index 100% rename from sound/vore/Prey/digest_07.ogg rename to sound/vore/isweartogodthisbettercompile/digest_07.ogg diff --git a/sound/vore/Prey/digest_08.ogg b/sound/vore/isweartogodthisbettercompile/digest_08.ogg similarity index 100% rename from sound/vore/Prey/digest_08.ogg rename to sound/vore/isweartogodthisbettercompile/digest_08.ogg diff --git a/sound/vore/Prey/digest_09.ogg b/sound/vore/isweartogodthisbettercompile/digest_09.ogg similarity index 100% rename from sound/vore/Prey/digest_09.ogg rename to sound/vore/isweartogodthisbettercompile/digest_09.ogg diff --git a/sound/vore/Prey/digest_10.ogg b/sound/vore/isweartogodthisbettercompile/digest_10.ogg similarity index 100% rename from sound/vore/Prey/digest_10.ogg rename to sound/vore/isweartogodthisbettercompile/digest_10.ogg diff --git a/sound/vore/Prey/digest_11.ogg b/sound/vore/isweartogodthisbettercompile/digest_11.ogg similarity index 100% rename from sound/vore/Prey/digest_11.ogg rename to sound/vore/isweartogodthisbettercompile/digest_11.ogg diff --git a/sound/vore/Prey/digest_12.ogg b/sound/vore/isweartogodthisbettercompile/digest_12.ogg similarity index 100% rename from sound/vore/Prey/digest_12.ogg rename to sound/vore/isweartogodthisbettercompile/digest_12.ogg diff --git a/sound/vore/Prey/digest_13.ogg b/sound/vore/isweartogodthisbettercompile/digest_13.ogg similarity index 100% rename from sound/vore/Prey/digest_13.ogg rename to sound/vore/isweartogodthisbettercompile/digest_13.ogg diff --git a/sound/vore/Prey/digest_14.ogg b/sound/vore/isweartogodthisbettercompile/digest_14.ogg similarity index 100% rename from sound/vore/Prey/digest_14.ogg rename to sound/vore/isweartogodthisbettercompile/digest_14.ogg diff --git a/sound/vore/Prey/digest_15.ogg b/sound/vore/isweartogodthisbettercompile/digest_15.ogg similarity index 100% rename from sound/vore/Prey/digest_15.ogg rename to sound/vore/isweartogodthisbettercompile/digest_15.ogg diff --git a/sound/vore/Prey/digest_16.ogg b/sound/vore/isweartogodthisbettercompile/digest_16.ogg similarity index 100% rename from sound/vore/Prey/digest_16.ogg rename to sound/vore/isweartogodthisbettercompile/digest_16.ogg diff --git a/sound/vore/Prey/digest_17.ogg b/sound/vore/isweartogodthisbettercompile/digest_17.ogg similarity index 100% rename from sound/vore/Prey/digest_17.ogg rename to sound/vore/isweartogodthisbettercompile/digest_17.ogg diff --git a/sound/vore/Prey/digest_18.ogg b/sound/vore/isweartogodthisbettercompile/digest_18.ogg similarity index 100% rename from sound/vore/Prey/digest_18.ogg rename to sound/vore/isweartogodthisbettercompile/digest_18.ogg diff --git a/sound/vore/Prey/escape.ogg b/sound/vore/isweartogodthisbettercompile/escape.ogg similarity index 100% rename from sound/vore/Prey/escape.ogg rename to sound/vore/isweartogodthisbettercompile/escape.ogg diff --git a/sound/vore/Prey/insertion_01.ogg b/sound/vore/isweartogodthisbettercompile/insertion_01.ogg similarity index 100% rename from sound/vore/Prey/insertion_01.ogg rename to sound/vore/isweartogodthisbettercompile/insertion_01.ogg diff --git a/sound/vore/Prey/insertion_02.ogg b/sound/vore/isweartogodthisbettercompile/insertion_02.ogg similarity index 100% rename from sound/vore/Prey/insertion_02.ogg rename to sound/vore/isweartogodthisbettercompile/insertion_02.ogg diff --git a/sound/vore/Prey/loop.ogg b/sound/vore/isweartogodthisbettercompile/loop.ogg similarity index 100% rename from sound/vore/Prey/loop.ogg rename to sound/vore/isweartogodthisbettercompile/loop.ogg diff --git a/sound/vore/Prey/schlorp.ogg b/sound/vore/isweartogodthisbettercompile/schlorp.ogg similarity index 100% rename from sound/vore/Prey/schlorp.ogg rename to sound/vore/isweartogodthisbettercompile/schlorp.ogg diff --git a/sound/vore/Prey/squish_01.ogg b/sound/vore/isweartogodthisbettercompile/squish_01.ogg similarity index 100% rename from sound/vore/Prey/squish_01.ogg rename to sound/vore/isweartogodthisbettercompile/squish_01.ogg diff --git a/sound/vore/Prey/squish_02.ogg b/sound/vore/isweartogodthisbettercompile/squish_02.ogg similarity index 100% rename from sound/vore/Prey/squish_02.ogg rename to sound/vore/isweartogodthisbettercompile/squish_02.ogg diff --git a/sound/vore/Prey/squish_03.ogg b/sound/vore/isweartogodthisbettercompile/squish_03.ogg similarity index 100% rename from sound/vore/Prey/squish_03.ogg rename to sound/vore/isweartogodthisbettercompile/squish_03.ogg diff --git a/sound/vore/Prey/squish_04.ogg b/sound/vore/isweartogodthisbettercompile/squish_04.ogg similarity index 100% rename from sound/vore/Prey/squish_04.ogg rename to sound/vore/isweartogodthisbettercompile/squish_04.ogg diff --git a/sound/vore/prey/stomachmove.ogg b/sound/vore/isweartogodthisbettercompile/stomachmove.ogg similarity index 100% rename from sound/vore/prey/stomachmove.ogg rename to sound/vore/isweartogodthisbettercompile/stomachmove.ogg diff --git a/sound/vore/Prey/struggle_01.ogg b/sound/vore/isweartogodthisbettercompile/struggle_01.ogg similarity index 100% rename from sound/vore/Prey/struggle_01.ogg rename to sound/vore/isweartogodthisbettercompile/struggle_01.ogg diff --git a/sound/vore/Prey/struggle_02.ogg b/sound/vore/isweartogodthisbettercompile/struggle_02.ogg similarity index 100% rename from sound/vore/Prey/struggle_02.ogg rename to sound/vore/isweartogodthisbettercompile/struggle_02.ogg diff --git a/sound/vore/Prey/struggle_03.ogg b/sound/vore/isweartogodthisbettercompile/struggle_03.ogg similarity index 100% rename from sound/vore/Prey/struggle_03.ogg rename to sound/vore/isweartogodthisbettercompile/struggle_03.ogg diff --git a/sound/vore/Prey/struggle_04.ogg b/sound/vore/isweartogodthisbettercompile/struggle_04.ogg similarity index 100% rename from sound/vore/Prey/struggle_04.ogg rename to sound/vore/isweartogodthisbettercompile/struggle_04.ogg diff --git a/sound/vore/Prey/struggle_05.ogg b/sound/vore/isweartogodthisbettercompile/struggle_05.ogg similarity index 100% rename from sound/vore/Prey/struggle_05.ogg rename to sound/vore/isweartogodthisbettercompile/struggle_05.ogg diff --git a/sound/vore/Prey/swallow_01.ogg b/sound/vore/isweartogodthisbettercompile/swallow_01.ogg similarity index 100% rename from sound/vore/Prey/swallow_01.ogg rename to sound/vore/isweartogodthisbettercompile/swallow_01.ogg diff --git a/sound/vore/Prey/swallow_02.ogg b/sound/vore/isweartogodthisbettercompile/swallow_02.ogg similarity index 100% rename from sound/vore/Prey/swallow_02.ogg rename to sound/vore/isweartogodthisbettercompile/swallow_02.ogg diff --git a/sound/vore/Prey/taurswallow.ogg b/sound/vore/isweartogodthisbettercompile/taurswallow.ogg similarity index 100% rename from sound/vore/Prey/taurswallow.ogg rename to sound/vore/isweartogodthisbettercompile/taurswallow.ogg From 2a0c047d3b6d3811048130f0e3c984592350013b Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 8 Jan 2018 15:21:58 -0500 Subject: [PATCH 8/8] but seriously, how the fUCK did this manage to break --- .../death_01.ogg | Bin .../death_02.ogg | Bin .../death_03.ogg | Bin .../death_04.ogg | Bin .../death_05.ogg | Bin .../death_06.ogg | Bin .../death_07.ogg | Bin .../death_08.ogg | Bin .../death_09.ogg | Bin .../death_10.ogg | Bin .../death_11.ogg | Bin .../death_12.ogg | Bin .../death_13.ogg | Bin .../digest_01.ogg | Bin .../digest_02.ogg | Bin .../digest_03.ogg | Bin .../digest_04.ogg | Bin .../digest_05.ogg | Bin .../digest_06.ogg | Bin .../digest_07.ogg | Bin .../digest_08.ogg | Bin .../digest_09.ogg | Bin .../digest_10.ogg | Bin .../digest_11.ogg | Bin .../digest_12.ogg | Bin .../digest_13.ogg | Bin .../digest_14.ogg | Bin .../digest_15.ogg | Bin .../digest_16.ogg | Bin .../digest_17.ogg | Bin .../digest_18.ogg | Bin .../escape.ogg | Bin .../insertion_01.ogg | Bin .../insertion_02.ogg | Bin .../{isweartogodthisbettercompile => prey}/loop.ogg | Bin .../schlorp.ogg | Bin .../squish_01.ogg | Bin .../squish_02.ogg | Bin .../squish_03.ogg | Bin .../squish_04.ogg | Bin .../stomachmove.ogg | Bin .../struggle_01.ogg | Bin .../struggle_02.ogg | Bin .../struggle_03.ogg | Bin .../struggle_04.ogg | Bin .../struggle_05.ogg | Bin .../swallow_01.ogg | Bin .../swallow_02.ogg | Bin .../taurswallow.ogg | Bin 49 files changed, 0 insertions(+), 0 deletions(-) rename sound/vore/{isweartogodthisbettercompile => prey}/death_01.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/death_02.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/death_03.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/death_04.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/death_05.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/death_06.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/death_07.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/death_08.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/death_09.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/death_10.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/death_11.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/death_12.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/death_13.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_01.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_02.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_03.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_04.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_05.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_06.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_07.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_08.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_09.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_10.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_11.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_12.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_13.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_14.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_15.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_16.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_17.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/digest_18.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/escape.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/insertion_01.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/insertion_02.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/loop.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/schlorp.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/squish_01.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/squish_02.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/squish_03.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/squish_04.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/stomachmove.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/struggle_01.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/struggle_02.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/struggle_03.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/struggle_04.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/struggle_05.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/swallow_01.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/swallow_02.ogg (100%) rename sound/vore/{isweartogodthisbettercompile => prey}/taurswallow.ogg (100%) diff --git a/sound/vore/isweartogodthisbettercompile/death_01.ogg b/sound/vore/prey/death_01.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/death_01.ogg rename to sound/vore/prey/death_01.ogg diff --git a/sound/vore/isweartogodthisbettercompile/death_02.ogg b/sound/vore/prey/death_02.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/death_02.ogg rename to sound/vore/prey/death_02.ogg diff --git a/sound/vore/isweartogodthisbettercompile/death_03.ogg b/sound/vore/prey/death_03.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/death_03.ogg rename to sound/vore/prey/death_03.ogg diff --git a/sound/vore/isweartogodthisbettercompile/death_04.ogg b/sound/vore/prey/death_04.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/death_04.ogg rename to sound/vore/prey/death_04.ogg diff --git a/sound/vore/isweartogodthisbettercompile/death_05.ogg b/sound/vore/prey/death_05.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/death_05.ogg rename to sound/vore/prey/death_05.ogg diff --git a/sound/vore/isweartogodthisbettercompile/death_06.ogg b/sound/vore/prey/death_06.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/death_06.ogg rename to sound/vore/prey/death_06.ogg diff --git a/sound/vore/isweartogodthisbettercompile/death_07.ogg b/sound/vore/prey/death_07.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/death_07.ogg rename to sound/vore/prey/death_07.ogg diff --git a/sound/vore/isweartogodthisbettercompile/death_08.ogg b/sound/vore/prey/death_08.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/death_08.ogg rename to sound/vore/prey/death_08.ogg diff --git a/sound/vore/isweartogodthisbettercompile/death_09.ogg b/sound/vore/prey/death_09.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/death_09.ogg rename to sound/vore/prey/death_09.ogg diff --git a/sound/vore/isweartogodthisbettercompile/death_10.ogg b/sound/vore/prey/death_10.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/death_10.ogg rename to sound/vore/prey/death_10.ogg diff --git a/sound/vore/isweartogodthisbettercompile/death_11.ogg b/sound/vore/prey/death_11.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/death_11.ogg rename to sound/vore/prey/death_11.ogg diff --git a/sound/vore/isweartogodthisbettercompile/death_12.ogg b/sound/vore/prey/death_12.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/death_12.ogg rename to sound/vore/prey/death_12.ogg diff --git a/sound/vore/isweartogodthisbettercompile/death_13.ogg b/sound/vore/prey/death_13.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/death_13.ogg rename to sound/vore/prey/death_13.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_01.ogg b/sound/vore/prey/digest_01.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_01.ogg rename to sound/vore/prey/digest_01.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_02.ogg b/sound/vore/prey/digest_02.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_02.ogg rename to sound/vore/prey/digest_02.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_03.ogg b/sound/vore/prey/digest_03.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_03.ogg rename to sound/vore/prey/digest_03.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_04.ogg b/sound/vore/prey/digest_04.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_04.ogg rename to sound/vore/prey/digest_04.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_05.ogg b/sound/vore/prey/digest_05.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_05.ogg rename to sound/vore/prey/digest_05.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_06.ogg b/sound/vore/prey/digest_06.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_06.ogg rename to sound/vore/prey/digest_06.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_07.ogg b/sound/vore/prey/digest_07.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_07.ogg rename to sound/vore/prey/digest_07.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_08.ogg b/sound/vore/prey/digest_08.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_08.ogg rename to sound/vore/prey/digest_08.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_09.ogg b/sound/vore/prey/digest_09.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_09.ogg rename to sound/vore/prey/digest_09.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_10.ogg b/sound/vore/prey/digest_10.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_10.ogg rename to sound/vore/prey/digest_10.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_11.ogg b/sound/vore/prey/digest_11.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_11.ogg rename to sound/vore/prey/digest_11.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_12.ogg b/sound/vore/prey/digest_12.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_12.ogg rename to sound/vore/prey/digest_12.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_13.ogg b/sound/vore/prey/digest_13.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_13.ogg rename to sound/vore/prey/digest_13.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_14.ogg b/sound/vore/prey/digest_14.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_14.ogg rename to sound/vore/prey/digest_14.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_15.ogg b/sound/vore/prey/digest_15.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_15.ogg rename to sound/vore/prey/digest_15.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_16.ogg b/sound/vore/prey/digest_16.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_16.ogg rename to sound/vore/prey/digest_16.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_17.ogg b/sound/vore/prey/digest_17.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_17.ogg rename to sound/vore/prey/digest_17.ogg diff --git a/sound/vore/isweartogodthisbettercompile/digest_18.ogg b/sound/vore/prey/digest_18.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/digest_18.ogg rename to sound/vore/prey/digest_18.ogg diff --git a/sound/vore/isweartogodthisbettercompile/escape.ogg b/sound/vore/prey/escape.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/escape.ogg rename to sound/vore/prey/escape.ogg diff --git a/sound/vore/isweartogodthisbettercompile/insertion_01.ogg b/sound/vore/prey/insertion_01.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/insertion_01.ogg rename to sound/vore/prey/insertion_01.ogg diff --git a/sound/vore/isweartogodthisbettercompile/insertion_02.ogg b/sound/vore/prey/insertion_02.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/insertion_02.ogg rename to sound/vore/prey/insertion_02.ogg diff --git a/sound/vore/isweartogodthisbettercompile/loop.ogg b/sound/vore/prey/loop.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/loop.ogg rename to sound/vore/prey/loop.ogg diff --git a/sound/vore/isweartogodthisbettercompile/schlorp.ogg b/sound/vore/prey/schlorp.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/schlorp.ogg rename to sound/vore/prey/schlorp.ogg diff --git a/sound/vore/isweartogodthisbettercompile/squish_01.ogg b/sound/vore/prey/squish_01.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/squish_01.ogg rename to sound/vore/prey/squish_01.ogg diff --git a/sound/vore/isweartogodthisbettercompile/squish_02.ogg b/sound/vore/prey/squish_02.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/squish_02.ogg rename to sound/vore/prey/squish_02.ogg diff --git a/sound/vore/isweartogodthisbettercompile/squish_03.ogg b/sound/vore/prey/squish_03.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/squish_03.ogg rename to sound/vore/prey/squish_03.ogg diff --git a/sound/vore/isweartogodthisbettercompile/squish_04.ogg b/sound/vore/prey/squish_04.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/squish_04.ogg rename to sound/vore/prey/squish_04.ogg diff --git a/sound/vore/isweartogodthisbettercompile/stomachmove.ogg b/sound/vore/prey/stomachmove.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/stomachmove.ogg rename to sound/vore/prey/stomachmove.ogg diff --git a/sound/vore/isweartogodthisbettercompile/struggle_01.ogg b/sound/vore/prey/struggle_01.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/struggle_01.ogg rename to sound/vore/prey/struggle_01.ogg diff --git a/sound/vore/isweartogodthisbettercompile/struggle_02.ogg b/sound/vore/prey/struggle_02.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/struggle_02.ogg rename to sound/vore/prey/struggle_02.ogg diff --git a/sound/vore/isweartogodthisbettercompile/struggle_03.ogg b/sound/vore/prey/struggle_03.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/struggle_03.ogg rename to sound/vore/prey/struggle_03.ogg diff --git a/sound/vore/isweartogodthisbettercompile/struggle_04.ogg b/sound/vore/prey/struggle_04.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/struggle_04.ogg rename to sound/vore/prey/struggle_04.ogg diff --git a/sound/vore/isweartogodthisbettercompile/struggle_05.ogg b/sound/vore/prey/struggle_05.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/struggle_05.ogg rename to sound/vore/prey/struggle_05.ogg diff --git a/sound/vore/isweartogodthisbettercompile/swallow_01.ogg b/sound/vore/prey/swallow_01.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/swallow_01.ogg rename to sound/vore/prey/swallow_01.ogg diff --git a/sound/vore/isweartogodthisbettercompile/swallow_02.ogg b/sound/vore/prey/swallow_02.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/swallow_02.ogg rename to sound/vore/prey/swallow_02.ogg diff --git a/sound/vore/isweartogodthisbettercompile/taurswallow.ogg b/sound/vore/prey/taurswallow.ogg similarity index 100% rename from sound/vore/isweartogodthisbettercompile/taurswallow.ogg rename to sound/vore/prey/taurswallow.ogg