diff --git a/desktop/src-common/advent/screens/rooms/outside_house.clj b/desktop/src-common/advent/screens/rooms/outside_house.clj index 34b3b254..c2d24966 100644 --- a/desktop/src-common/advent/screens/rooms/outside_house.clj +++ b/desktop/src-common/advent/screens/rooms/outside_house.clj @@ -703,6 +703,9 @@ (actions/get-script entities (actions/talk entities :ego "That's just cruel.")) nil) + + :eat-sound (utils/load-sound "outsidehouse/sheep-eat.ogg") + :anim-sound-frames {sheep-stand {11 [:eat-sound 1.0]}} :left {:walk (utils/flip sheep-walk) :stand (utils/flip sheep-stand)} :right {:walk sheep-walk diff --git a/desktop/src-common/advent/utils.clj b/desktop/src-common/advent/utils.clj index 9f2a8e82..7929a67f 100644 --- a/desktop/src-common/advent/utils.clj +++ b/desktop/src-common/advent/utils.clj @@ -258,7 +258,7 @@ (try (sound (str f ".mp3")) (catch Exception _ - (sound (str f ".mp3"))))) + (sound f))))