diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-06-11 17:46:22 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-06-11 17:46:22 +0800 |
commit | 1a23a0071a1c220d0e70c99f9d71904f0635fad0 (patch) | |
tree | 8197710e3d9e75c2f271696ae96b6488ef120404 /features/stat_next_to_name/index.js | |
parent | 4cfe8fd69d2d72df01dcc6804ab6b801e3890e73 (diff) | |
download | SoopyV2-1a23a0071a1c220d0e70c99f9d71904f0635fad0.tar.gz SoopyV2-1a23a0071a1c220d0e70c99f9d71904f0635fad0.tar.bz2 SoopyV2-1a23a0071a1c220d0e70c99f9d71904f0635fad0.zip |
+ small bugfixes
Diffstat (limited to 'features/stat_next_to_name/index.js')
-rw-r--r-- | features/stat_next_to_name/index.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/features/stat_next_to_name/index.js b/features/stat_next_to_name/index.js index 372103b..d72f988 100644 --- a/features/stat_next_to_name/index.js +++ b/features/stat_next_to_name/index.js @@ -19,7 +19,8 @@ class StatNextToName extends Feature { "skillAvg": "Skill Average", "totalSlayer": "Total Slayer Exp", "networth": "Networth", - "classAverage": "Class Average" + "classAverage": "Class Average", + "bestiary": "Bestiary" }) this.decimals = { @@ -28,6 +29,7 @@ class StatNextToName extends Feature { "skillAvg": 2, "totalSlayer": 0, "classAverage": 2, + "bestiary": 1, "networth": "small" } @@ -135,6 +137,7 @@ class StatNextToName extends Feature { } playerStatsLoaded(stats) { + stats.bestiary /= 10 this.userStats[stats.uuid] = stats } |