From 61e8b65f143c0e15ec69f47a07a6a80fcafab67e Mon Sep 17 00:00:00 2001 From: Alice Harris Date: Sat, 28 Mar 2015 11:24:58 +1000 Subject: [PATCH] fix drop notification images for hatching potions --- website/public/js/services/notificationServices.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/public/js/services/notificationServices.js b/website/public/js/services/notificationServices.js index 2fe226a8b4..481f3222e0 100644 --- a/website/public/js/services/notificationServices.js +++ b/website/public/js/services/notificationServices.js @@ -85,7 +85,7 @@ angular.module("habitrpg").factory("Notification", dropClass = 'Pet_Egg_' + item.key; break; case "HatchingPotion": - dropClass = 'Pet_Hatching' + item.key; + dropClass = 'Pet_HatchingPotion_' + item.key; break; case "Food": dropClass = 'Pet_Food_' + item.key;