From ff1f63da9a1a16148bc6651635adc35565c69680 Mon Sep 17 00:00:00 2001 From: Keith Holliday Date: Sun, 29 Nov 2015 10:00:02 -0600 Subject: [PATCH] Removed user.stats.lvl check before attribution --- common/script/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/script/index.js b/common/script/index.js index 49054eafe9..0b4055863b 100644 --- a/common/script/index.js +++ b/common/script/index.js @@ -2282,7 +2282,7 @@ api.wrap = function(user, main) { tnl = api.tnl(user.stats.lvl); user.stats.hp = 50; var totalStatPoints = user.stats.str + user.stats.int + user.stats.con + user.stats.per; - if (user.stats.lvl > api.maxLevel && totalPoints >= 100 ) { + if (totalStatPoints >= api.maxLevel) { continue; } if (user.preferences.automaticAllocation) {