Skip to content
Snippets Groups Projects
Commit c3fa8825 authored by ezsh's avatar ezsh
Browse files

Show numeric stat for muscles in the slave summary

Fixes #1750.
parent 93446f9b
No related branches found
No related tags found
No related merge requests found
......@@ -545,7 +545,7 @@ App.UI.SlaveSummaryImpl = function() {
*/
function long_muscles(slave, c) {
const h = helpers;
h.makeStyledSpan(c, h.getMultiNumericRating(data.long.body.muscles, [slave.muscles + 100, h.FSData.policy.PhysicalIdealist.active]));
h.makeStyledSpan(c, h.getMultiNumericRating(data.long.body.muscles, [slave.muscles + 100, h.FSData.policy.PhysicalIdealist.active]), slave.muscles);
}
/**
......@@ -722,7 +722,7 @@ App.UI.SlaveSummaryImpl = function() {
*/
function short_muscles(slave, c) {
const h = helpers;
h.makeStyledSpan(c, h.getMultiNumericRating(data.short.body.muscles, [slave.muscles + 100, h.FSData.policy.PhysicalIdealist.active]));
h.makeStyledSpan(c, h.getMultiNumericRating(data.short.body.muscles, [slave.muscles + 100, h.FSData.policy.PhysicalIdealist.active]), slave.muscles);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment