diff --git a/website/client/components/shops/buyModal.vue b/website/client/components/shops/buyModal.vue index b4cc1b6ea1..94edce871c 100644 --- a/website/client/components/shops/buyModal.vue +++ b/website/client/components/shops/buyModal.vue @@ -42,7 +42,7 @@ :item="item" ) - .purchase-amount + .purchase-amount(v-if='item.value > 0') .how-many-to-buy(v-if='showAmountToBuy(item)') strong {{ $t('howManyToBuy') }} div(v-if='showAmountToBuy(item)') diff --git a/website/client/components/shops/market/keysToKennel.vue b/website/client/components/shops/market/keysToKennel.vue index ad1a9a1b1f..b54ff64f84 100644 --- a/website/client/components/shops/market/keysToKennel.vue +++ b/website/client/components/shops/market/keysToKennel.vue @@ -123,7 +123,7 @@ export default { key: 'keysToBoth', text: this.$t('keyToBoth'), notes: this.$t('keyToBothDesc'), - value: 6, + value: 0, currency: 'gems', class: 'key_to_both', locked: false, diff --git a/website/common/script/ops/releaseBoth.js b/website/common/script/ops/releaseBoth.js index 7548a45d9c..34f7e9b3f0 100644 --- a/website/common/script/ops/releaseBoth.js +++ b/website/common/script/ops/releaseBoth.js @@ -10,8 +10,8 @@ import pick from 'lodash/pick'; module.exports = function releaseBoth (user, req = {}, analytics) { let animal; - if (user.balance < 1.5 && !user.achievements.triadBingo) { - throw new NotAuthorized(i18n.t('notEnoughGems', req.language)); + if (!user.achievements.triadBingo) { + throw new NotAuthorized(i18n.t('notEnoughPetsMounts', req.language)); } if (beastMasterProgress(user.items.pets) !== 90 || mountMasterProgress(user.items.mounts) !== 90) { diff --git a/website/server/controllers/api-v3/news.js b/website/server/controllers/api-v3/news.js index a4869a5fd9..622808e665 100644 --- a/website/server/controllers/api-v3/news.js +++ b/website/server/controllers/api-v3/news.js @@ -37,7 +37,7 @@ api.getNews = {
The Keys to the Kennels have returned! Now, when you collect all 90 standard pets or mounts, you can release them for 4 Gems, letting you collect them all over again! If you want a real challenge, you can attain the elusive Triad Bingo by filling your stable with all of both, then set them all free at once for 6 Gems!
+The Keys to the Kennels have returned! Now, when you collect all 90 standard pets or mounts, you can release them for 4 Gems, letting you collect them all over again! If you want a real challenge, you can attain the elusive Triad Bingo by filling your stable with all of both, then set them all free at once at no cost!