From 452b0d60fa97733ab1c0f364739a54ef820def3c Mon Sep 17 00:00:00 2001 From: Tyler Renelle Date: Mon, 11 Feb 2013 11:51:12 -0500 Subject: [PATCH] Revert "knock feature unlock requirements down a level each" This reverts commit 6f871b34ffa666cac0821e312e0d9179973c4245. --- src/app/scoring.coffee | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/scoring.coffee b/src/app/scoring.coffee index 8e40d46d7a..8aa50498cf 100644 --- a/src/app/scoring.coffee +++ b/src/app/scoring.coffee @@ -89,14 +89,14 @@ updateStats = (newStats, batch) -> if !obj.flags.customizationsNotification and (obj.stats.exp > 10 or obj.stats.lvl > 1) batch.set 'flags.customizationsNotification', true obj.flags.customizationsNotification = true - if !obj.flags.itemsEnabled and obj.stats.lvl >= 1 + if !obj.flags.itemsEnabled and obj.stats.lvl >= 2 # Set to object, then also send to browser right away to get model.on() subscription notification batch.set 'flags.itemsEnabled', true obj.flags.itemsEnabled = true - if !obj.flags.partyEnabled and obj.stats.lvl >= 2 + if !obj.flags.partyEnabled and obj.stats.lvl >= 3 batch.set 'flags.partyEnabled', true obj.flags.partyEnabled = true - if !obj.flags.petsEnabled and obj.stats.lvl >= 3 + if !obj.flags.petsEnabled and obj.stats.lvl >= 4 batch.set 'flags.petsEnabled', true obj.flags.petsEnabled = true