diff --git a/code/datums/components/edible.dm b/code/datums/components/edible.dm
index 1818ba108d..f9096ef0d3 100644
--- a/code/datums/components/edible.dm
+++ b/code/datums/components/edible.dm
@@ -165,7 +165,9 @@ Behavior that's still missing from this component that original food items had t
return FALSE
if(eater.satiety > -200)
eater.satiety -= junkiness
+ //GS13 Edit- Eating sound prefs
playsound_prefed(eater.loc,'sound/items/eatfood.ogg', EATING_NOISES, rand(10,50), TRUE)
+ //GS13 Edit end
var/mob/living/carbon/human/human_eater = eater
if(istype(human_eater))
var/bitevolume = 1
diff --git a/code/datums/elements/trash.dm b/code/datums/elements/trash.dm
index e86ef0f77b..e4819602ce 100644
--- a/code/datums/elements/trash.dm
+++ b/code/datums/elements/trash.dm
@@ -9,7 +9,9 @@
if((M == user || user.vore_flags & TRASH_FORCEFEED) && ishuman(user))
var/mob/living/carbon/human/H = user
if(HAS_TRAIT(H, TRAIT_TRASHCAN))
+ //GS13 Edit - Eating sound prefs
playsound_prefed(H.loc,'sound/items/eatfood.ogg', EATING_NOISES, rand(10,50), 1)
+ //GS13 Edit end
if(H.vore_selected)
H.visible_message("[H] [H.vore_selected.vore_verb]s the [source.name] into their [H.vore_selected.name]",
"You [H.vore_selected.vore_verb] the [source.name] into your [H.vore_selected.name]")
diff --git a/code/modules/food_and_drinks/food/snacks.dm b/code/modules/food_and_drinks/food/snacks.dm
index ec9cedf22b..d41ec91f6e 100644
--- a/code/modules/food_and_drinks/food/snacks.dm
+++ b/code/modules/food_and_drinks/food/snacks.dm
@@ -172,7 +172,9 @@ All foods are distributed among various categories. Use common sense.
if(reagents) //Handle ingestion of the reagent.
if(M.satiety > -200)
M.satiety -= junkiness
+ //GS13 Edit - Eating sound prefs
playsound_prefed(M.loc,'sound/items/eatfood.ogg', EATING_NOISES, rand(10,50), 1)
+ //GS13 Edit end
var/bitevolume = 1
if(HAS_TRAIT(M, TRAIT_VORACIOUS))
bitevolume = bitevolume * 0.67