mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-05 12:02:13 +00:00
Daily derp! Don't return PER when STR is suggested
This commit is contained in:
parent
9f4efc31ed
commit
c4a82d4edd
2 changed files with 2 additions and 2 deletions
2
dist/habitrpg-shared.js
vendored
2
dist/habitrpg-shared.js
vendored
|
|
@ -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";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue