diff --git a/public/js/controllers/inventoryCtrl.js b/public/js/controllers/inventoryCtrl.js index d790d93c25..5f4d63f95e 100644 --- a/public/js/controllers/inventoryCtrl.js +++ b/public/js/controllers/inventoryCtrl.js @@ -99,7 +99,7 @@ habitrpg.controller("InventoryCtrl", ['$rootScope', '$scope', '$window', 'User', var food = $scope.selectedFood if (food.key == 'Saddle') { if (!$window.confirm('Saddle ' + pet + '?')) return; - } else if (!$window.confirm('Feed ' + pet + ' a ' + food.text + '?')) { + } else if (!$window.confirm('Feed ' + pet + ' '+ food.article + food.text + '?')) { return; } User.user.ops.feed({params:{pet: pet, food: food.key}});