diff --git a/dist/habitrpg-shared.js b/dist/habitrpg-shared.js index 05b535d6d0..bfee496a8c 100644 --- a/dist/habitrpg-shared.js +++ b/dist/habitrpg-shared.js @@ -15191,10 +15191,10 @@ api.wrap = function(user, main) { if (user.flags == null) { user.flags = {}; } - if (!user.flags.customizationsNotification && (user.stats.exp > 10 || user.stats.lvl > 1)) { + if (!user.flags.customizationsNotification && (user.stats.exp > 5 || user.stats.lvl > 1)) { user.flags.customizationsNotification = true; } - if (!user.flags.itemsEnabled && user.stats.lvl >= 2) { + if (!user.flags.itemsEnabled && (user.stats.exp > 10 || user.stats.lvl > 1)) { user.flags.itemsEnabled = true; } if (!user.flags.partyEnabled && user.stats.lvl >= 3) { diff --git a/script/index.coffee b/script/index.coffee index 5bbd874834..1e8f3bb8ff 100644 --- a/script/index.coffee +++ b/script/index.coffee @@ -1242,9 +1242,9 @@ api.wrap = (user, main=true) -> # Set flags when they unlock features user.flags ?= {} - if !user.flags.customizationsNotification and (user.stats.exp > 10 or user.stats.lvl > 1) + if !user.flags.customizationsNotification and (user.stats.exp > 5 or user.stats.lvl > 1) user.flags.customizationsNotification = true - if !user.flags.itemsEnabled and user.stats.lvl >= 2 + if !user.flags.itemsEnabled and (user.stats.exp > 10 or user.stats.lvl > 1) user.flags.itemsEnabled = true if !user.flags.partyEnabled and user.stats.lvl >= 3 user.flags.partyEnabled = true