Skip to content
Snippets Groups Projects
Commit 219b0e36 authored by Pregmodder's avatar Pregmodder
Browse files

Tweak reBusyServantsQuarters.js sex act counts

parent 0a63a17b
No related branches found
No related tags found
1 merge request!9799Tweak reBusyServantsQuarters.js sex act counts
......@@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
## Unreleased
* Arcade DOM conversion
* Farmyard DOM conversion
## 0.10.7.1-4.0.0-alpha.4 - 2021-06-26
......
......@@ -21,7 +21,19 @@ App.Events.REBusyServantsQuarters = class REBusyServantsQuarters extends App.Eve
for (const slave of V.slaves) {
if (slave.assignment !== Job.QUARTER) {
slave.devotion += 4;
actX(slave, "oral", 3);
if (canPenetrate(slave) {
actX(slave, "penetrative", 2);
if (canDoVaginal(slave)) {
actX(slave, "vaginal", 1);
} else {
actX(slave, "penetrative", 1);
}
} else if (canDoVaginal(slave)) {
actX(slave, "vaginal", 2);
actX(slave, "penetrative", 1);
} else {
actX(slave, "penetrative", 3);
}
} else {
slave.devotion -= 5;
if (canDoVaginal(slave) && slave.vagina > 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