diff --git a/public/js/controllers/notificationCtrl.js b/public/js/controllers/notificationCtrl.js index 1188db3759..d2436c03b4 100644 --- a/public/js/controllers/notificationCtrl.js +++ b/public/js/controllers/notificationCtrl.js @@ -167,5 +167,9 @@ habitrpg.controller('NotificationCtrl', $rootScope.$on('responseText', function(ev, error){ Notification.text(error); }); + + // Show new-stuff modal on load + if (User.user.flags.newStuff) + $rootScope.openModal('newStuff'); } ]);