diff --git a/code/modules/mob/living/basic/farm_animals/cow.dm b/code/modules/mob/living/basic/farm_animals/cow.dm index 1ba8bc4049c..07ce11fb999 100644 --- a/code/modules/mob/living/basic/farm_animals/cow.dm +++ b/code/modules/mob/living/basic/farm_animals/cow.dm @@ -2,7 +2,6 @@ speech_chance = 2 speak = list("Moo?", "Moo", "MOOOOOO") speak_verbs = list("moos", "moos hauntingly") - sound = list('sound/creatures/cow.ogg') emote_hear = list("brays.") emote_see = list("shakes her head.") diff --git a/code/modules/mob/living/basic/farm_animals/pig.dm b/code/modules/mob/living/basic/farm_animals/pig.dm index 09b3f378c32..16e320f6fd0 100644 --- a/code/modules/mob/living/basic/farm_animals/pig.dm +++ b/code/modules/mob/living/basic/farm_animals/pig.dm @@ -1,10 +1,6 @@ /datum/ai_planning_subtree/random_speech/pig speech_chance = 2 speak = list("oink?", "oink", "OINK") - sound = list( - 'sound/creatures/pig/pig1.ogg', - 'sound/creatures/pig/pig2.ogg' - ) emote_hear = list("oinks.") emote_see = list("rolls around.") diff --git a/sound/creatures/cow.ogg b/sound/creatures/cow.ogg deleted file mode 100644 index 23d44e81496..00000000000 Binary files a/sound/creatures/cow.ogg and /dev/null differ diff --git a/sound/creatures/pig/pig1.ogg b/sound/creatures/pig/pig1.ogg deleted file mode 100644 index eb63bd5c6eb..00000000000 Binary files a/sound/creatures/pig/pig1.ogg and /dev/null differ diff --git a/sound/creatures/pig/pig2.ogg b/sound/creatures/pig/pig2.ogg deleted file mode 100644 index 5a2ee7e0639..00000000000 Binary files a/sound/creatures/pig/pig2.ogg and /dev/null differ