diff --git a/test/api/v3/integration/quests/POST-groups_groupId_quests_invite.test.js b/test/api/v3/integration/quests/POST-groups_groupId_quests_invite.test.js index 81a0d1327c..170f9a4c21 100644 --- a/test/api/v3/integration/quests/POST-groups_groupId_quests_invite.test.js +++ b/test/api/v3/integration/quests/POST-groups_groupId_quests_invite.test.js @@ -83,22 +83,6 @@ describe('POST /groups/:groupId/quests/invite/:questKey', () => { }); }); - it('does not issue invites if the user is of insufficient Level', async () => { - const LEVELED_QUEST = 'atom1'; - const LEVELED_QUEST_REQ = questScrolls[LEVELED_QUEST].lvl; - const leaderUpdate = {}; - leaderUpdate[`items.quests.${LEVELED_QUEST}`] = 1; - leaderUpdate['stats.lvl'] = LEVELED_QUEST_REQ - 1; - - await leader.update(leaderUpdate); - - await expect(leader.post(`/groups/${questingGroup._id}/quests/invite/${LEVELED_QUEST}`)).to.eventually.be.rejected.and.eql({ - code: 401, - error: 'NotAuthorized', - message: t('questLevelTooHigh', { level: LEVELED_QUEST_REQ }), - }); - }); - it('does not issue invites if a quest is already underway', async () => { const QUEST_IN_PROGRESS = 'atom1'; const leaderUpdate = {}; @@ -212,6 +196,18 @@ describe('POST /groups/:groupId/quests/invite/:questKey', () => { expect(returnedGroup.chat[0]._meta).to.be.undefined; }); + it('successfully issues a quest invitation when quest level is higher than user level', async () => { + const LEVELED_QUEST = 'atom1'; + const LEVELED_QUEST_REQ = questScrolls[LEVELED_QUEST].lvl; + const leaderUpdate = {}; + leaderUpdate[`items.quests.${LEVELED_QUEST}`] = 1; + leaderUpdate['stats.lvl'] = LEVELED_QUEST_REQ - 1; + + await leader.update(leaderUpdate); + + await leader.post(`/groups/${questingGroup._id}/quests/invite/${LEVELED_QUEST}`); + }); + context('sending quest activity webhooks', () => { before(async () => { await server.start(); diff --git a/website/common/locales/ach/quests.json b/website/common/locales/ach/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/ach/quests.json +++ b/website/common/locales/ach/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/af/quests.json b/website/common/locales/af/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/af/quests.json +++ b/website/common/locales/af/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/ar/quests.json b/website/common/locales/ar/quests.json index f98a770274..b9a582f21c 100755 --- a/website/common/locales/ar/quests.json +++ b/website/common/locales/ar/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/be/quests.json b/website/common/locales/be/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/be/quests.json +++ b/website/common/locales/be/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/bg/quests.json b/website/common/locales/bg/quests.json index 7ff84674a9..03cbe05899 100644 --- a/website/common/locales/bg/quests.json +++ b/website/common/locales/bg/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Не притежавате този свитък с мисия.", "questNotGoldPurchasable": "Мисията „<%= key %>“ не може да бъде купена със злато.", "questNotGemPurchasable": "Мисията „<%= key %>“ не може да бъде купена с диаманти.", - "questLevelTooHigh": "Трябва да бъдете ниво <%= level %>, за да започнете тази мисия.", "questAlreadyUnderway": "Групата Ви е вече изпълнява мисия. Опитайте отново, когато текущата мисия приключи.", "questAlreadyAccepted": "Вече сте приели поканата за мисията.", "noActiveQuestToLeave": "Няма текуща мисия за напускане", diff --git a/website/common/locales/bn/quests.json b/website/common/locales/bn/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/bn/quests.json +++ b/website/common/locales/bn/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/bs/quests.json b/website/common/locales/bs/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/bs/quests.json +++ b/website/common/locales/bs/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/ca/quests.json b/website/common/locales/ca/quests.json index d7e26f7085..ca93464b90 100755 --- a/website/common/locales/ca/quests.json +++ b/website/common/locales/ca/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/cs/quests.json b/website/common/locales/cs/quests.json index d6dc05c1f0..1eda9be61e 100644 --- a/website/common/locales/cs/quests.json +++ b/website/common/locales/cs/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Nevlastníte tento svitek výpravy.", "questNotGoldPurchasable": "Výpravu „<%= key %>\" nelze koupit na zlato.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "Pro začátek výpravy musíte mít úroveň <%= level %>.", "questAlreadyUnderway": "Vaše družina se již účastní výpravy. Až dokončíte současnou výpravu zkuste to znova.", "questAlreadyAccepted": "Již jsi přijal pozvánku na výpravu.", "noActiveQuestToLeave": "Žádné aktivní výpravy k opuštění", diff --git a/website/common/locales/da/quests.json b/website/common/locales/da/quests.json index 53ae6ddf8a..b29be85bd2 100644 --- a/website/common/locales/da/quests.json +++ b/website/common/locales/da/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Du ejer ikke den quest-skriftrulle.", "questNotGoldPurchasable": "Quest \"<%= key %>\" er ikke en quest, der kan købes for Guld.", "questNotGemPurchasable": "Quest \"<%= key %>\" skal ikke købes med Ædelsten.", - "questLevelTooHigh": "Du skal være niveau <%= level %> for at starte denne quest.", "questAlreadyUnderway": "Din gruppe er allerede på en quest. Prøv igen når den nuværende quest er afsluttet.", "questAlreadyAccepted": "Du har allerede accepteret questinvitationen.", "noActiveQuestToLeave": "Ingen aktiv quest at forlade", diff --git a/website/common/locales/de/quests.json b/website/common/locales/de/quests.json index 0b57627aa1..caaf22ee7b 100644 --- a/website/common/locales/de/quests.json +++ b/website/common/locales/de/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Du besitzt diese Quest-Schriftrolle nicht.", "questNotGoldPurchasable": "Quest \"<%= key %>\" ist nicht mit Gold käuflich.", "questNotGemPurchasable": "Quest \"<%= key %>\" ist nicht mit Edelsteinen käuflich.", - "questLevelTooHigh": "Du musst Level <%= level %> haben, um diese Quest zu starten.", "questAlreadyUnderway": "Deine Party nimmt bereits an einer Quest teil. Versuche es erneut, wenn die Quest abgeschlossen ist.", "questAlreadyAccepted": "Du hast die Questeinladung bereits angenommen.", "noActiveQuestToLeave": "Keine Quest zum Verlassen aktiv", diff --git a/website/common/locales/el/quests.json b/website/common/locales/el/quests.json index 2ea3b8bdf7..c6ba00b26a 100755 --- a/website/common/locales/el/quests.json +++ b/website/common/locales/el/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/en/quests.json b/website/common/locales/en/quests.json index a644274ca1..975c5bf953 100644 --- a/website/common/locales/en/quests.json +++ b/website/common/locales/en/quests.json @@ -50,7 +50,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyStarted": "The quest has already started.", "questAlreadyStartedFriendly": "The quest has already started, but you can always catch the next one!", diff --git a/website/common/locales/en@lolcat/quests.json b/website/common/locales/en@lolcat/quests.json index 29ed0be3b6..5bca70e99c 100755 --- a/website/common/locales/en@lolcat/quests.json +++ b/website/common/locales/en@lolcat/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/en@pirate/quests.json b/website/common/locales/en@pirate/quests.json index 67e72e63a8..a13af565c1 100644 --- a/website/common/locales/en@pirate/quests.json +++ b/website/common/locales/en@pirate/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Ye don't own that adventure scroll.", "questNotGoldPurchasable": "Adventure \"<%= key %>\" doesn't be a Doubloon-purchasable adventure.", "questNotGemPurchasable": "Adventure \"<%= key %>\" doesn't be a Sapphire-purchasable adventure.", - "questLevelTooHigh": "Ye must be level <%= level %> t' begin this adventure.", "questAlreadyUnderway": "Yer crew already be on a adventure. Try again when th' current adventure has ended.", "questAlreadyAccepted": "Ye already accepted th' adventure invitation.", "noActiveQuestToLeave": "No active adventure t' leave", diff --git a/website/common/locales/en_GB/quests.json b/website/common/locales/en_GB/quests.json index 3ef4f8d35f..4671b57602 100644 --- a/website/common/locales/en_GB/quests.json +++ b/website/common/locales/en_GB/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/eo/quests.json b/website/common/locales/eo/quests.json index 867cfcec41..c13357a211 100755 --- a/website/common/locales/eo/quests.json +++ b/website/common/locales/eo/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/es/quests.json b/website/common/locales/es/quests.json index b59dba6a00..2ab6c39950 100644 --- a/website/common/locales/es/quests.json +++ b/website/common/locales/es/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "No posees ese pergamino de misión.", "questNotGoldPurchasable": "La misión \"<%= key %>\" no es una misión por oro.", "questNotGemPurchasable": "La misión \"<%= key %>\" no es una misión que se pueda comprar por gemas.", - "questLevelTooHigh": "Debes ser nivel <%= level %> para empezar esta misión.", "questAlreadyUnderway": "Tu equipo ya está en una misión. Inténtalo de nuevo cuando la misión haya terminado.", "questAlreadyAccepted": "Ya has aceptado la invitación a la misión.", "noActiveQuestToLeave": "No hay misión activa de la que salir", diff --git a/website/common/locales/es_419/quests.json b/website/common/locales/es_419/quests.json index bf16b505ae..3343ff6617 100644 --- a/website/common/locales/es_419/quests.json +++ b/website/common/locales/es_419/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "No posees ese pergamino de misión.", "questNotGoldPurchasable": "La misión \"<%= key %>\" es una misión no comprable con Oro.", "questNotGemPurchasable": "La Misión \"<%= key %>\" no puede ser comprada con Gemas.", - "questLevelTooHigh": "Debes ser de nivel <%= level %> para empezar esta misión.", "questAlreadyUnderway": "Tu equipo ya esta en una misión. Intenta denuevo cuando la misión actual haya terminado.", "questAlreadyAccepted": "Ya aceptaste la invitación a la misión.", "noActiveQuestToLeave": "No hay una misión activa para abandonar", diff --git a/website/common/locales/et/quests.json b/website/common/locales/et/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/et/quests.json +++ b/website/common/locales/et/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/eu/quests.json b/website/common/locales/eu/quests.json index 8177684da2..4401f12a2e 100755 --- a/website/common/locales/eu/quests.json +++ b/website/common/locales/eu/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "", "questNotGoldPurchasable": "", "questNotGemPurchasable": "", - "questLevelTooHigh": "", "questAlreadyUnderway": "", "questAlreadyAccepted": "", "noActiveQuestToLeave": "", diff --git a/website/common/locales/fa_IR/quests.json b/website/common/locales/fa_IR/quests.json index ca9102546d..4c3f6d0077 100755 --- a/website/common/locales/fa_IR/quests.json +++ b/website/common/locales/fa_IR/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/fi/quests.json b/website/common/locales/fi/quests.json index 55ef36bd7e..5b43e3c4b9 100755 --- a/website/common/locales/fi/quests.json +++ b/website/common/locales/fi/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Et omista kyseistä jahtikääröä.", "questNotGoldPurchasable": "Jahtia \"<%= key %>\" ei voi ostaa kullalla.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "Sinun on oltava tasolla <%= level %> aloittaaksesi tämän jahdin.", "questAlreadyUnderway": "Seurueesi on jo jahdissa. Yritä uudelleen, kun nykyinen jahti on päättynyt.", "questAlreadyAccepted": "Olet jo hyväksynyt jahtikutsun.", "noActiveQuestToLeave": "Ei aktiivista jahtia, josta poistua.", diff --git a/website/common/locales/fil/quests.json b/website/common/locales/fil/quests.json index 9c847dcae5..c71816cd04 100755 --- a/website/common/locales/fil/quests.json +++ b/website/common/locales/fil/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/fr/quests.json b/website/common/locales/fr/quests.json index cb1118b80d..c55b7e82fb 100644 --- a/website/common/locales/fr/quests.json +++ b/website/common/locales/fr/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Vous ne possédez pas ce parchemin de quête.", "questNotGoldPurchasable": "La quête \"<%= key %>\" n'est pas achetable avec de l'or.", "questNotGemPurchasable": "La quête \"<%= key %>\" n'est pas achetable avec des Gemmes.", - "questLevelTooHigh": "Vous devez être au moins au niveau <%= level %> pour commencer cette quête.", "questAlreadyUnderway": "Votre équipe est déjà en quête. Essayez à nouveau lorsque la quête actuelle sera terminée.", "questAlreadyAccepted": "Vous avez déjà accepté l'invitation à la quête.", "noActiveQuestToLeave": "Il n'y a pas de quête active à quitter", diff --git a/website/common/locales/fy/quests.json b/website/common/locales/fy/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/fy/quests.json +++ b/website/common/locales/fy/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/ga/quests.json b/website/common/locales/ga/quests.json index 0f0317b836..65d3a3ea87 100755 --- a/website/common/locales/ga/quests.json +++ b/website/common/locales/ga/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/gl/quests.json b/website/common/locales/gl/quests.json index 9f517cb087..255f375307 100755 --- a/website/common/locales/gl/quests.json +++ b/website/common/locales/gl/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Ese pergamiño de misión non che pertence.", "questNotGoldPurchasable": "A Misión \"<%= key %>\" non se pode mercar con Ouro.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "Tes que ser de nivel <%= level %> para comezar esta misión.", "questAlreadyUnderway": "O teu equipo xa está de misión. Volve intentalo cando a misión actual termine.", "questAlreadyAccepted": "Xa aceptaches a invitación da misión.", "noActiveQuestToLeave": "Non hai misión activa que abandoar.", diff --git a/website/common/locales/haw/quests.json b/website/common/locales/haw/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/haw/quests.json +++ b/website/common/locales/haw/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/he/quests.json b/website/common/locales/he/quests.json index a8a1f01fb9..98932c7981 100644 --- a/website/common/locales/he/quests.json +++ b/website/common/locales/he/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "אין ברשותכם את המגילה הזו.", "questNotGoldPurchasable": "ההרפתקה ״<%= key %>״ אינה ניתנת לרכישה באמצעות זהב.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "עליכם להיות בדרגה <%= level %> כדי להתחיל את ההרפתקה הזו.", "questAlreadyUnderway": "החבורה שלכם נמצאת כבר במהלכה של הרפתקה. נסו שוב כשזו תסתיים.", "questAlreadyAccepted": "כבר הסכמתם להזמנה להרפתקה.", "noActiveQuestToLeave": "אין הרפתקה לעזוב", diff --git a/website/common/locales/hi_IN/quests.json b/website/common/locales/hi_IN/quests.json index 0e91c5b6b5..2f95ca5597 100755 --- a/website/common/locales/hi_IN/quests.json +++ b/website/common/locales/hi_IN/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/hr/quests.json b/website/common/locales/hr/quests.json index fe9a2aba7b..11525d0503 100755 --- a/website/common/locales/hr/quests.json +++ b/website/common/locales/hr/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Ne posjeduješ taj pustolovni svitak.", "questNotGoldPurchasable": "Pustolovinu \"<%= key %>\" se ne može kupiti zlatnicima.", "questNotGemPurchasable": "Pustolovinu \"<%= key %>\" se ne može kupiti Draguljima.", - "questLevelTooHigh": "Moraš biti level <%= level %> da bi započeo/la ovu pustolovinu.", "questAlreadyUnderway": "Tvoja družina je već na pustolovini. Pokušaj ponovno kad trenutna pustolovina završi.", "questAlreadyAccepted": "Već si prihvatio/la poziv za pustolovinu.", "noActiveQuestToLeave": "Nema aktivnih pustolovina koje možeš napustiti", diff --git a/website/common/locales/hu/quests.json b/website/common/locales/hu/quests.json index bde5dbe2ca..037fe7a2ee 100644 --- a/website/common/locales/hu/quests.json +++ b/website/common/locales/hu/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Nem rendelkezel ezzel a küldetés tekerccsel.", "questNotGoldPurchasable": "A \"<%= key %>\" küldetést nem lehet aranyért megvenni.", "questNotGemPurchasable": "A \"<%= key %>\" küldetés nem vásárolható meg drágakövekkel.", - "questLevelTooHigh": "<%= level %> szinten kell lenned, hogy elkezdhesd ezt a küldetést.", "questAlreadyUnderway": "A csapatod már küldetésen van. Próbálkozz újra, amikor az aktuális küldetés befejeződött.", "questAlreadyAccepted": "Már elfogadtad ezt a küldetés meghívót.", "noActiveQuestToLeave": "Nincs aktuális küldetés, amelyből kiléphetnél", diff --git a/website/common/locales/id/quests.json b/website/common/locales/id/quests.json index 5a9bb7accc..813c24c891 100644 --- a/website/common/locales/id/quests.json +++ b/website/common/locales/id/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Kamu tidak memiliki gulungan misi tersebut.", "questNotGoldPurchasable": "Misi \"<%= key %>\" tidak dapat dibeli dengan Emas.", "questNotGemPurchasable": "Misi \"<%= key %>\" tidak dapat dibeli dengan Permata.", - "questLevelTooHigh": "Kamu harus berada di level <%= level %> untuk memulai misi ini.", "questAlreadyUnderway": "Party-mu telah berada dalam misi. Coba lagi ketika misi telah selesai.", "questAlreadyAccepted": "Kamu telah menerima undangan misi.", "noActiveQuestToLeave": "Tidak ada misi aktif untuk ditinggalkan", diff --git a/website/common/locales/is/quests.json b/website/common/locales/is/quests.json index f7f049e95e..b1bd7b3158 100755 --- a/website/common/locales/is/quests.json +++ b/website/common/locales/is/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "Þú verður að hafa náð <%= level %> borði til þess að byrja þetta verkefni ", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/it/quests.json b/website/common/locales/it/quests.json index 7d1ecbbb4f..d5e1bea556 100644 --- a/website/common/locales/it/quests.json +++ b/website/common/locales/it/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Non possiedi questa pergamena.", "questNotGoldPurchasable": "La Missione \"<%= key %>\" non può essere comprata con Oro.", "questNotGemPurchasable": "La missione \"<%= key %>\" non è acquistabile con delle gemme.", - "questLevelTooHigh": "Devi essere almeno al livello <%= level %> per iniziare questa missione.", "questAlreadyUnderway": "La tua squadra è già in missione. Riprova quando la missione corrente è terminata.", "questAlreadyAccepted": "Hai già accettato l'invito alla missione.", "noActiveQuestToLeave": "Nessuna missione attiva da abbandonare", diff --git a/website/common/locales/ja/quests.json b/website/common/locales/ja/quests.json index 1d6a8660cb..da7eff3168 100644 --- a/website/common/locales/ja/quests.json +++ b/website/common/locales/ja/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "クエストの巻物を持っていません。", "questNotGoldPurchasable": "\"<%= key %>\" のクエストは、ゴールドで買えるクエストではありません。", "questNotGemPurchasable": "\"<%= key %>\" のクエストは、ジェムで買えるクエストではありません。", - "questLevelTooHigh": "このクエストに挑戦するにはレベル <%= level %> が必要です。", "questAlreadyUnderway": "あなたのパーティーはいま別のクエスト中です。現在のクエストが終わった後に再度実行してください。", "questAlreadyAccepted": "あなたはこのクエストの招待をすでに承認しています。", "noActiveQuestToLeave": "進行中のクエストがないので辞退できません", diff --git a/website/common/locales/jbo/quests.json b/website/common/locales/jbo/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/jbo/quests.json +++ b/website/common/locales/jbo/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/jv/quests.json b/website/common/locales/jv/quests.json index c6b0cc495a..2ab787c232 100755 --- a/website/common/locales/jv/quests.json +++ b/website/common/locales/jv/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/ko/quests.json b/website/common/locales/ko/quests.json index 55f70579e6..05daee1ef1 100755 --- a/website/common/locales/ko/quests.json +++ b/website/common/locales/ko/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "퀘스트 스크롤을 소유하고 있지 않습니다.", "questNotGoldPurchasable": "퀘스트\"<%=key %>\" 는 금으로 살수 있는 퀘스트가 아니다.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "이 퀘스트는 레벨 <%= level %> 이 되어야 시작할 수 있습니다.", "questAlreadyUnderway": "당신의 파티는 이미 퀘스트가 있습니다. 지금 하고있는 퀘스트 완료 후에 다시 시도 하세요.", "questAlreadyAccepted": "당신은 퀘스트 요청을 이미 수락 하셧습니다.", "noActiveQuestToLeave": "활성화된 퀘스트가 없습니다.", diff --git a/website/common/locales/ku_IQ/quests.json b/website/common/locales/ku_IQ/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/ku_IQ/quests.json +++ b/website/common/locales/ku_IQ/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/la/quests.json b/website/common/locales/la/quests.json index 47248d532c..ee3f7eb630 100755 --- a/website/common/locales/la/quests.json +++ b/website/common/locales/la/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/ln/quests.json b/website/common/locales/ln/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/ln/quests.json +++ b/website/common/locales/ln/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/lt/quests.json b/website/common/locales/lt/quests.json index b27a5ee371..b0daf01717 100755 --- a/website/common/locales/lt/quests.json +++ b/website/common/locales/lt/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Neturiu šio misijų rankraščio.", "questNotGoldPurchasable": "Misijos \"<%= key %>\" negalima nusipirkti už Auksą.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "Turi pasiekti <%= level %> lygį prieš pradedant šią misiją.", "questAlreadyUnderway": "Tavo grupė jau turi misiją. Pabandyk vėl jai pasibaigus.", "questAlreadyAccepted": "Jau sutikai su misijos pakvietimu.", "noActiveQuestToLeave": "Negali palikti neegzistuojančios misijos", diff --git a/website/common/locales/lv/quests.json b/website/common/locales/lv/quests.json index 84794be370..99b6d9de4f 100755 --- a/website/common/locales/lv/quests.json +++ b/website/common/locales/lv/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/mk/quests.json b/website/common/locales/mk/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/mk/quests.json +++ b/website/common/locales/mk/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/ml/quests.json b/website/common/locales/ml/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/ml/quests.json +++ b/website/common/locales/ml/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/mn/quests.json b/website/common/locales/mn/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/mn/quests.json +++ b/website/common/locales/mn/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/mr/quests.json b/website/common/locales/mr/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/mr/quests.json +++ b/website/common/locales/mr/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/ms/quests.json b/website/common/locales/ms/quests.json index 1cc2b5d520..7f26a3fba2 100755 --- a/website/common/locales/ms/quests.json +++ b/website/common/locales/ms/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Misi \"<%= key %>\" bukan sesuatu misi yang boleh dibeli dengan syiling emas", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/nl/quests.json b/website/common/locales/nl/quests.json index ce54b84dc7..5ae005bfe3 100644 --- a/website/common/locales/nl/quests.json +++ b/website/common/locales/nl/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Je bezit deze queesterol niet.", "questNotGoldPurchasable": "Deze queeste \\\"<%= key %>\\\" is niet met goud verkrijgbaar.", "questNotGemPurchasable": "Queeste \"<%= key %>\" is geen Edelsteen-koopbare queeste.", - "questLevelTooHigh": "Je moet niveau <%= level %> zijn om deze queeste te beginnen.", "questAlreadyUnderway": "Jouw gezelschap is al op een queeste. Probeer het opnieuw wanneer deze queeste is beëindigd.", "questAlreadyAccepted": "Je hebt de queesteuitnodiging al geaccepteerd.", "noActiveQuestToLeave": "Geen actieve queeste om te verlaten", diff --git a/website/common/locales/nn/quests.json b/website/common/locales/nn/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/nn/quests.json +++ b/website/common/locales/nn/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/no/quests.json b/website/common/locales/no/quests.json index 624ea16209..9309de40c2 100755 --- a/website/common/locales/no/quests.json +++ b/website/common/locales/no/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Du eier ikke denne oppdragsrullen.", "questNotGoldPurchasable": "Oppdrag \"<%= key %>\" kan ikke kjøpes med gull.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "Du må være minst nivå <%= level %> for å starte dette oppdraget.", "questAlreadyUnderway": "Klanen din er allerede på oppdrag. Prøv igjen når pågående oppdrag er utført.", "questAlreadyAccepted": "Du har allerede godtatt oppdragsinvitasjonen.", "noActiveQuestToLeave": "Ingen aktive oppdrag å forlate.", diff --git a/website/common/locales/pl/quests.json b/website/common/locales/pl/quests.json index 74aea9fc3e..742b41daaf 100644 --- a/website/common/locales/pl/quests.json +++ b/website/common/locales/pl/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Nie posiadasz tego zwoju misji.", "questNotGoldPurchasable": "Misja \"<%= key %>\" nie może być kupiona za złoto.", "questNotGemPurchasable": "Misja \"<%= key %>\" nie może być kupiona za Klejnoty.", - "questLevelTooHigh": "Musisz mieć co najmniej poziom <%= level %>, by rozpocząć tą misję.", "questAlreadyUnderway": "Twoja drużyna już jest na misji. Spróbuj ponownie gdy obecna misja się zakończy.", "questAlreadyAccepted": "Już zaakceptowałeś zaproszenie na misję.", "noActiveQuestToLeave": "Brak aktywnych misji do opuszczenia", diff --git a/website/common/locales/pt/quests.json b/website/common/locales/pt/quests.json index bbad1f77aa..5c7684bcf2 100644 --- a/website/common/locales/pt/quests.json +++ b/website/common/locales/pt/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Você não possui esse pergaminho de missão.", "questNotGoldPurchasable": "Missão \"<%= key %>\" não é comprável com ouro.", "questNotGemPurchasable": "A missão \"<%= key %>\" não pode ser comprada com gemas.", - "questLevelTooHigh": "Você precisa ter nível <%= level %> para iniciar essa missão.", "questAlreadyUnderway": "A sua equipa já está numa missão. Tente novamente quando a missão atual tiver terminado.", "questAlreadyAccepted": "Você já aceitou o convite para a missão.", "noActiveQuestToLeave": "Não há missão ativa para sair", diff --git a/website/common/locales/pt_BR/quests.json b/website/common/locales/pt_BR/quests.json index 974f969d73..ab993b5a8e 100644 --- a/website/common/locales/pt_BR/quests.json +++ b/website/common/locales/pt_BR/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Você não possui esse pergaminho de missão.", "questNotGoldPurchasable": "Missão \"<%= key %>\" não é comprável com ouro.", "questNotGemPurchasable": ".A missão \"<%= key %>\" não é comprável com Gemas.", - "questLevelTooHigh": "Você precisa ter nível <%= level %> para iniciar essa missão.", "questAlreadyUnderway": "Seu grupo já está em uma missão. Tente novamente quando a missão atual tiver encerrado.", "questAlreadyAccepted": "Você já aceitou o convite para a missão.", "noActiveQuestToLeave": "Não há missão ativa para sair", diff --git a/website/common/locales/ro/quests.json b/website/common/locales/ro/quests.json index c09fc005b3..9fbc902782 100644 --- a/website/common/locales/ro/quests.json +++ b/website/common/locales/ro/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/ru/quests.json b/website/common/locales/ru/quests.json index 3fe6a5c8d6..093cbc2e94 100644 --- a/website/common/locales/ru/quests.json +++ b/website/common/locales/ru/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "У вас ещё нет этого свитка квеста.", "questNotGoldPurchasable": "Квест «<%= key %>» нельзя купить за золото.", "questNotGemPurchasable": "Квест «<%= key %>» нельзя купить за самоцветы.", - "questLevelTooHigh": "Вам нужно достигнуть уровня <%= level %>, чтобы начать этот квест.", "questAlreadyUnderway": "Ваша команда уже участвует в квесте. Попробуйте снова, когда закончите текущий квест.", "questAlreadyAccepted": "Вы уже приняли это приглашение на квест.", "noActiveQuestToLeave": "Нет активных квестов, чтобы их покинуть", diff --git a/website/common/locales/sco/quests.json b/website/common/locales/sco/quests.json index af06af3255..479ef6c7b1 100755 --- a/website/common/locales/sco/quests.json +++ b/website/common/locales/sco/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/si/quests.json b/website/common/locales/si/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/si/quests.json +++ b/website/common/locales/si/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/sk/quests.json b/website/common/locales/sk/quests.json index 058953ed3a..561a23b54e 100644 --- a/website/common/locales/sk/quests.json +++ b/website/common/locales/sk/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Nevlastníš tento zvitok s výpravou.", "questNotGoldPurchasable": "Výprava \"<%= key %>\" sa nedá kúpiť so zlatom.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "Musíš byť level <%= level %>, aby si začal túto výpravu.", "questAlreadyUnderway": "Tvoja družina je práve na výprave. Skús to znovu, keď vaša súčasná výprava skončí.", "questAlreadyAccepted": "Túto pozvánku si už prijal.", "noActiveQuestToLeave": "Žiadna aktívna výprava, ktorá by sa dala opustiť", diff --git a/website/common/locales/sl/quests.json b/website/common/locales/sl/quests.json index b7a292bf3e..be45a5af73 100755 --- a/website/common/locales/sl/quests.json +++ b/website/common/locales/sl/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Nimate tega zvitka z dogodivščino.", "questNotGoldPurchasable": "Dogodivščina \"<%= key %>\" ni na voljo za nakup z zlatom.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "Za začetek te dogodivščine morate biti vsaj stopnje <%= level %>.", "questAlreadyUnderway": "Vaša druščina je že na dogodivščini. Poskusite znova, ko bo trenutna zaključena.", "questAlreadyAccepted": "Vabilo na dogodivščino ste že sprejeli.", "noActiveQuestToLeave": "Ni aktivne dogodivščine, ki bi jo lahko zapustili", diff --git a/website/common/locales/sr/quests.json b/website/common/locales/sr/quests.json index c468fb14fc..546faa2691 100644 --- a/website/common/locales/sr/quests.json +++ b/website/common/locales/sr/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/su/quests.json b/website/common/locales/su/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/su/quests.json +++ b/website/common/locales/su/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/sv/quests.json b/website/common/locales/sv/quests.json index 59cb200ede..6343d793a9 100644 --- a/website/common/locales/sv/quests.json +++ b/website/common/locales/sv/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Du äger inte den där uppdragsskriftrullen.", "questNotGoldPurchasable": "Uppdrag \"<%= key %>\" går inte att köpa med Guld.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "Du måste vara nivå <%= level %> för att påbörja det här uppdraget.", "questAlreadyUnderway": "Ditt sällskap är redan på ett uppdrag. Försök igen när det nuvarande uppdraget har avslutats.", "questAlreadyAccepted": "Du har redan accepterat uppdragsinbjudan.", "noActiveQuestToLeave": "Inget aktivt uppdrag att lämna", diff --git a/website/common/locales/sw/quests.json b/website/common/locales/sw/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/sw/quests.json +++ b/website/common/locales/sw/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/ta/quests.json b/website/common/locales/ta/quests.json index ec291c49d8..51ba0dae38 100755 --- a/website/common/locales/ta/quests.json +++ b/website/common/locales/ta/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/th/quests.json b/website/common/locales/th/quests.json index 5dfbcc48b5..19b6ea91b3 100755 --- a/website/common/locales/th/quests.json +++ b/website/common/locales/th/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/tl_PH/quests.json b/website/common/locales/tl_PH/quests.json index 818e225fad..31e8db8049 100755 --- a/website/common/locales/tl_PH/quests.json +++ b/website/common/locales/tl_PH/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/tlh/quests.json b/website/common/locales/tlh/quests.json index d7e3cb5d40..87514f52c4 100755 --- a/website/common/locales/tlh/quests.json +++ b/website/common/locales/tlh/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/tr/quests.json b/website/common/locales/tr/quests.json index 88f1206202..6bc406df67 100644 --- a/website/common/locales/tr/quests.json +++ b/website/common/locales/tr/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "Bu görev parşömenine sahip değilsin.", "questNotGoldPurchasable": "\"<%= key %>\" görevi Altın ile satın alınabilen bir görev değil.", "questNotGemPurchasable": "\"<%= key %>\" görevi Elmas ile satın alınabilen bir görev değil.", - "questLevelTooHigh": "Bu göreve başlamak için <%= level %>. seviye olmalısın.", "questAlreadyUnderway": "Takımın zaten bir görevde. Şu anki görev sona erdiğinde tekrar dene.", "questAlreadyAccepted": "Görev davetini zaten kabul ettin.", "noActiveQuestToLeave": "Ayrılınacak aktif bir görev bulunmuyor", diff --git a/website/common/locales/uk/quests.json b/website/common/locales/uk/quests.json index 8070381087..8a662c2ba1 100644 --- a/website/common/locales/uk/quests.json +++ b/website/common/locales/uk/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/ur_PK/quests.json b/website/common/locales/ur_PK/quests.json index 4f8077d1ce..f2bf60a6b9 100755 --- a/website/common/locales/ur_PK/quests.json +++ b/website/common/locales/ur_PK/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/vi/quests.json b/website/common/locales/vi/quests.json index 332159a225..efcfbf300f 100755 --- a/website/common/locales/vi/quests.json +++ b/website/common/locales/vi/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/zh/quests.json b/website/common/locales/zh/quests.json index 3aabae4252..0c2bc7f643 100644 --- a/website/common/locales/zh/quests.json +++ b/website/common/locales/zh/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "你还没拥有那个副本卷轴。", "questNotGoldPurchasable": "副本“<%= key %>”不能用金币购买。", "questNotGemPurchasable": "副本“<%= key %>”不可用宝石进行购买。", - "questLevelTooHigh": "你必须达到等级<%= level %>来开始这个副本。", "questAlreadyUnderway": "你的队伍已经开始一个副本。当前副本结束后请再试一次。", "questAlreadyAccepted": "你已经接收副本邀请。", "noActiveQuestToLeave": "没有正在进行的副本可供退出", diff --git a/website/common/locales/zh_HK/quests.json b/website/common/locales/zh_HK/quests.json index be8211801e..ec5cf38792 100755 --- a/website/common/locales/zh_HK/quests.json +++ b/website/common/locales/zh_HK/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", - "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", "noActiveQuestToLeave": "No active quest to leave", diff --git a/website/common/locales/zh_TW/quests.json b/website/common/locales/zh_TW/quests.json index 155d22eee4..f6a43b8443 100644 --- a/website/common/locales/zh_TW/quests.json +++ b/website/common/locales/zh_TW/quests.json @@ -49,7 +49,6 @@ "questNotOwned": "您沒有此副本卷軸。", "questNotGoldPurchasable": "副本〈<%= key %>〉無法使用金幣購買。", "questNotGemPurchasable": "無法使用寶石購買〈<%= key %>〉副本。", - "questLevelTooHigh": "您必須達到等級<%= level %>才能開始此副本。", "questAlreadyUnderway": "您的隊伍已經正在進行副本。請等到目前的副本結束後再試一次。", "questAlreadyAccepted": "你已經接受了副本邀請。", "noActiveQuestToLeave": "沒有正在進行的副本可供離開", diff --git a/website/server/controllers/api-v3/quests.js b/website/server/controllers/api-v3/quests.js index 264069bab5..dd1105e58d 100644 --- a/website/server/controllers/api-v3/quests.js +++ b/website/server/controllers/api-v3/quests.js @@ -73,7 +73,6 @@ api.inviteToQuest = { if (group.type !== 'party') throw new NotAuthorized(res.t('guildQuestsNotSupported')); if (!quest) throw new NotFound(apiError('questNotFound', { key: questKey })); if (!user.items.quests[questKey]) throw new NotAuthorized(res.t('questNotOwned')); - if (user.stats.lvl < quest.lvl) throw new NotAuthorized(res.t('questLevelTooHigh', { level: quest.lvl })); if (group.quest.key) throw new NotAuthorized(res.t('questAlreadyUnderway')); const members = await User.find({