diff --git a/desktop/src-common/advent/screens/rooms/outside_house.clj b/desktop/src-common/advent/screens/rooms/outside_house.clj index 5a7b8216..84feb304 100644 --- a/desktop/src-common/advent/screens/rooms/outside_house.clj +++ b/desktop/src-common/advent/screens/rooms/outside_house.clj @@ -169,6 +169,7 @@ (actions/talk entities :ego "The sheep has given me enough wool.") (if (is-sheep-close? @entities) (do (actions/walk-to entities :ego ego-sheep-loc) + (actions/play-animation entities :ego :reach) (actions/give entities items/wool) (actions/talk entities :ego "I guess her wool is shedding.")) (actions/talk entities :ego "She's too far away for me to pet her.")))) @@ -181,6 +182,7 @@ items/flask-1 (actions/get-script entities (if (is-sheep-close? @entities) (do (actions/walk-to entities :ego ego-sheep-loc) + (actions/play-animation entities :ego :reach) (actions/remove-item entities items/flask-1) (actions/give entities items/flask-1-with-milk) (actions/talk entities :ego "Sheeps milk."))