diff --git a/test/api/v3/integration/user/POST-user_hatch_egg_hatchingPotion.test.js b/test/api/v3/integration/user/POST-user_hatch_egg_hatchingPotion.test.js index 9f5c6ce7b5..51d79676b3 100644 --- a/test/api/v3/integration/user/POST-user_hatch_egg_hatchingPotion.test.js +++ b/test/api/v3/integration/user/POST-user_hatch_egg_hatchingPotion.test.js @@ -25,6 +25,7 @@ describe('POST /user/hatch/:egg/:hatchingPotion', () => { expect(user.items.pets['Wolf-Base']).to.equal(5); expect(user.items.eggs.Wolf).to.equal(0); expect(user.items.hatchingPotions.Base).to.equal(0); + expect(user.achievements.aridAuthority).to.not.equal(true); expect(res).to.eql({ message: t('messageHatched'), diff --git a/website/server/models/userNotification.js b/website/server/models/userNotification.js index 15ea616058..747d5f98c6 100644 --- a/website/server/models/userNotification.js +++ b/website/server/models/userNotification.js @@ -45,6 +45,8 @@ const NOTIFICATION_TYPES = [ 'ACHIEVEMENT_BEAST_MASTER', 'ACHIEVEMENT_MOUNT_MASTER', 'ACHIEVEMENT_TRIAD_BINGO', + 'ACHIEVEMENT_MONSTER_MAGUS', + 'ACHIEVEMENT_UNDEAD_UNDERTAKER', ]; const { Schema } = mongoose;