Skip to content
Snippets Groups Projects
Commit 1e9e2b87 authored by Anu's avatar Anu
Browse files

Fix braindead mistake

parent 849e4966
No related branches found
No related tags found
No related merge requests found
......@@ -462,7 +462,7 @@ App.EndWeek.Player.longTermPhysicalEffects = function(PC = V.PC) {
}
PC.physicalAge++;
PC.visualAge++;
if (slave.ovaryAge >= 0) { // immortal ovaries counteract progeria's effect on ovaryAge
if (PC.ovaryAge >= 0) { // immortal ovaries counteract progeria's effect on ovaryAge
PC.ovaryAge += 5; // Since we are using .physicalAge, we need to manipulate things to prevent the possibility of pregnancy.
}
}
......
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