Skip to content
Snippets Groups Projects
Commit 143d9f90 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'fix-use-weight' into 'pregmod-master'

Fix use weight not applying from multiple policies

See merge request !12337
parents bfdac434 6aa947d1
No related branches found
No related tags found
1 merge request!12337Fix use weight not applying from multiple policies
Pipeline #94475 passed
...@@ -61,11 +61,13 @@ globalThis.endWeek = (function() { ...@@ -61,11 +61,13 @@ globalThis.endWeek = (function() {
V.oralUseWeight += 2; V.oralUseWeight += 2;
V.vaginalUseWeight -= 1; V.vaginalUseWeight -= 1;
V.analUseWeight -= 1; V.analUseWeight -= 1;
} else if (V.policies.vaginalAppeal === 1) { }
if (V.policies.vaginalAppeal === 1) {
V.oralUseWeight -= 1; V.oralUseWeight -= 1;
V.vaginalUseWeight += 2; V.vaginalUseWeight += 2;
V.analUseWeight -= 1; V.analUseWeight -= 1;
} else if (V.policies.analAppeal === 1) { }
if (V.policies.analAppeal === 1) {
V.oralUseWeight -= 1; V.oralUseWeight -= 1;
V.vaginalUseWeight -= 1; V.vaginalUseWeight -= 1;
V.analUseWeight += 2; V.analUseWeight += 2;
......
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