Modifies pet name to be 'Desert Wolf' rather than 'Wolf-Desert'

This commit is contained in:
diablo 2014-01-16 21:42:08 -06:00
parent dfdccfb458
commit 16c38634b6

View file

@ -92,7 +92,7 @@ habitrpg.controller("InventoryCtrl", ['$rootScope', '$scope', '$window', 'User',
}
$scope.choosePet = function(egg, potion){
var pet = egg + '-' + potion;
var pet = potion + " " + egg;
// Feeding Pet
if ($scope.selectedFood) {