From ab7973f09327c00a3ed08c6de41952116169d0f2 Mon Sep 17 00:00:00 2001 From: Eve Martin Date: Fri, 30 Aug 2024 11:51:22 +0000 Subject: [PATCH] change descriptions to be more general --- game/static/game/js/cow.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game/static/game/js/cow.js b/game/static/game/js/cow.js index 98b834029..03eedb410 100644 --- a/game/static/game/js/cow.js +++ b/game/static/game/js/cow.js @@ -27,13 +27,13 @@ ocargo.Cow.prototype.queueLeaveAnimation = function(model, node) { ocargo.animation.appendAnimation({ type: 'callable', functionCall: this.type == ocargo.Cow.PIGEON ? ocargo.sound.pigeon : ocargo.sound.cow, - description: 'cow sound' + description: 'animal sound' }); ocargo.animation.appendAnimation({ type: 'cow_leave', id: this.id, coordinate: node.coordinate, - description: 'Cow leaving' + description: 'animal leaving' }); };