Skip to content
Snippets Groups Projects
Commit 7f2e96fa authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'amputate-limb' into 'pregmod-master'

Smarter description of number of limbs sel for amp

See merge request !8826
parents 4136ad5c 41372fe9
No related branches found
No related tags found
1 merge request!8826Smarter description of number of limbs sel for amp
...@@ -393,7 +393,7 @@ App.UI.surgeryPassageStructural = function(slave, cheat = false) { ...@@ -393,7 +393,7 @@ App.UI.surgeryPassageStructural = function(slave, cheat = false) {
allLimbs.onchange = () => { allLimbs.onchange = () => {
const checked = allLimbs.checked; const checked = allLimbs.checked;
limbs.forEach(l => l.checked = checked); limbs.forEach(l => l.checked = checked);
App.UI.DOM.replace(linkContainer, link(checked)); App.UI.DOM.replace(linkContainer, link(4));
}; };
const checkAllBox = function() { const checkAllBox = function() {
...@@ -414,7 +414,7 @@ App.UI.surgeryPassageStructural = function(slave, cheat = false) { ...@@ -414,7 +414,7 @@ App.UI.surgeryPassageStructural = function(slave, cheat = false) {
allLimbs.checked = false; allLimbs.checked = false;
allLimbs.indeterminate = true; allLimbs.indeterminate = true;
} }
App.UI.DOM.replace(linkContainer, link(checkedCount > 0)); App.UI.DOM.replace(linkContainer, link(checkedCount));
}; };
limbs.forEach(l => l.onchange = checkAllBox); limbs.forEach(l => l.onchange = checkAllBox);
...@@ -432,17 +432,17 @@ App.UI.surgeryPassageStructural = function(slave, cheat = false) { ...@@ -432,17 +432,17 @@ App.UI.surgeryPassageStructural = function(slave, cheat = false) {
limbs.forEach(l => appendCheckBox(div, l, idToNames.get(l.id).displayName)); limbs.forEach(l => appendCheckBox(div, l, idToNames.get(l.id).displayName));
outerDiv.append(div); outerDiv.append(div);
linkContainer.append(link(false)); linkContainer.append(link(0));
outerDiv.append(linkContainer); outerDiv.append(linkContainer);
/** /**
* @param {boolean} on * @param {Number} checkedCount
* @returns {HTMLAnchorElement|HTMLSpanElement} * @returns {HTMLAnchorElement|HTMLSpanElement}
*/ */
function link(on) { function link(checkedCount) {
if (on) { if (checkedCount) {
return App.UI.DOM.link( return App.UI.DOM.link(
"Amputate limb(s)", (checkedCount === 1) ? "Amputate limb" : "Amputate limbs",
() => { () => {
const oldLimbs = App.Medicine.Limbs.currentLimbs(slave); const oldLimbs = App.Medicine.Limbs.currentLimbs(slave);
let count = 0; let count = 0;
......
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