Skip to content
Snippets Groups Projects
Commit 080dfc7b authored by Arkerthan's avatar Arkerthan
Browse files

Fix birthday sex ignores contraceptives

parent 3b587c25
No related branches found
No related tags found
1 merge request!11271Fixes
......@@ -55,7 +55,9 @@ App.Events.RESSBirthdaySex = class RESSBirthdaySex extends App.Events.BaseEvent
);
seX(eventSlave, vaginal ? "vaginal" : "anal", V.PC);
knockMeUp(eventSlave, 1, vaginal ? 0 : 1, -1);
if (canImpreg(eventSlave, V.PC)) {
knockMeUp(eventSlave, 1, vaginal ? 0 : 1, -1);
}
eventSlave.devotion += 10;
App.Events.addParagraph(frag, r);
......@@ -80,7 +82,9 @@ App.Events.RESSBirthdaySex = class RESSBirthdaySex extends App.Events.BaseEvent
}
seX(eventSlave, vaginal ? "vaginal" : "anal", V.PC);
knockMeUp(eventSlave, 1, vaginal ? 0 : 1, -1);
if (canImpreg(eventSlave, V.PC)) {
knockMeUp(eventSlave, 1, vaginal ? 0 : 1, -1);
}
eventSlave.trust -= 10;
if (isVirgin) {
eventSlave.devotion -= 10;
......
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