diff --git a/dist/habitrpg-shared.js b/dist/habitrpg-shared.js index 19b4142610..190d0db602 100644 --- a/dist/habitrpg-shared.js +++ b/dist/habitrpg-shared.js @@ -11972,7 +11972,7 @@ var process=require("__browserify_process");(function() { } else if (user.stats.per === suggested) { return "per"; } else if (user.stats.str === suggested) { - return "per"; + return "str"; } else { return "con"; } diff --git a/script/index.coffee b/script/index.coffee index da65b9ac0f..16b060629c 100644 --- a/script/index.coffee +++ b/script/index.coffee @@ -950,7 +950,7 @@ api.wrap = (user) -> else if user.stats.per is suggested # Then favor PER, it's a god stat return "per" else if user.stats.str is suggested # Then favor STR, everyone loves crits - return "per" + return "str" else return "con" # CON, the unsexiest of attributes when "classbased"