From 15dcf5946c368c2c1d779c813a91a0f4491a111f Mon Sep 17 00:00:00 2001 From: Alice Harris Date: Thu, 11 Sep 2014 18:00:26 +1000 Subject: [PATCH] add noMount flag which is true for Plain Eggs so they can be hidden on the Mounts page --- dist/habitrpg-shared.js | 7 ++++--- script/content.coffee | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/dist/habitrpg-shared.js b/dist/habitrpg-shared.js index 4dc51b7bd3..75912cd552 100644 --- a/dist/habitrpg-shared.js +++ b/dist/habitrpg-shared.js @@ -11406,7 +11406,8 @@ api.questEggs = { Egg: { text: t('questEggEggText'), adjective: t('questEggEggAdjective'), - canBuy: false + canBuy: false, + noMount: true }, Rat: { text: t('questEggRatText'), @@ -14471,5 +14472,5 @@ api.wrap = function(user, main) { }; -}).call(this,require("/Users/lefnire/Dropbox/Sites/habitrpg/modules/habitrpg-shared/node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js")) -},{"./content.coffee":5,"./i18n.coffee":6,"/Users/lefnire/Dropbox/Sites/habitrpg/modules/habitrpg-shared/node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js":2,"lodash":3,"moment":4}]},{},[1]) \ No newline at end of file +}).call(this,require("/vagrant/node_modules/habitrpg-shared/node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js")) +},{"./content.coffee":5,"./i18n.coffee":6,"/vagrant/node_modules/habitrpg-shared/node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js":2,"lodash":3,"moment":4}]},{},[1]) \ No newline at end of file diff --git a/script/content.coffee b/script/content.coffee index ed138ecc1e..b414981e33 100644 --- a/script/content.coffee +++ b/script/content.coffee @@ -627,7 +627,7 @@ api.questEggs = Gryphon: text: t('questEggGryphonText'), adjective: t('questEggGryphonAdjective'), canBuy: false Hedgehog: text: t('questEggHedgehogText'), adjective: t('questEggHedgehogAdjective'), canBuy: false Deer: text: t('questEggDeerText'), adjective: t('questEggDeerAdjective'), canBuy: false - Egg: text: t('questEggEggText'), adjective: t('questEggEggAdjective'), canBuy: false + Egg: text: t('questEggEggText'), adjective: t('questEggEggAdjective'), canBuy: false, noMount: true Rat: text: t('questEggRatText'), adjective: t('questEggRatAdjective'), canBuy: false Octopus: text: t('questEggOctopusText'), adjective: t('questEggOctopusAdjective'), canBuy: false Seahorse: text: t('questEggSeahorseText'), adjective: t('questEggSeahorseAdjective'), canBuy: false