Skip to content
Snippets Groups Projects
Commit e7a961e5 authored by kopareigns's avatar kopareigns
Browse files

Continued removal of RERelationshipSlave

parent 90253368
No related branches found
No related tags found
No related merge requests found
......@@ -217,19 +217,19 @@ if(eventSlave.fetish != "mindbroken") {
}
if(eventSlave.relationship > 3) {
var index = State.variables.slaves.findIndex(function(s) { return s.ID == eventSlave.relationshipTarget; });
if(State.variables.slaves[index].devotion > 20) {
if(canWalk(State.variables.slaves[index])) {
if(canTalk(State.variables.slaves[index])) {
var relationshipSlave = State.variables.slaves.find(function(s) { return s.ID == eventSlave.relationshipTarget; });
if(relationshipSlave.devotion > 20) {
if(canWalk(relationshipSlave)) {
if(canTalk(relationshipSlave)) {
if(eventSlave.devotion > 50) {
if(eventSlave.trust > 50) {
if(eventSlave.speechRules != "restrictive") {
State.variables.RETSevent.push("date please");
}
if(State.variables.slaves[index].anus != 0) {
if(State.variables.slaves[index].dick != 1) {
if(State.variables.slaves[index].dick == 0 || canAchieveErection(State.variables.slaves[index])) {
if(State.variables.slaves[index].fetish == "dom" || State.variables.slaves[index].fetish == "sadist") {
if(relationshipSlave.anus != 0) {
if(relationshipSlave.dick != 1) {
if(relationshipSlave.dick == 0 || canAchieveErection(relationshipSlave)) {
if(relationshipSlave.fetish == "dom" || relationshipSlave.fetish == "sadist") {
State.variables.RETSevent.push("top exhaustion");
}
}
......@@ -1923,16 +1923,16 @@ if(eventSlave.fetish != "mindbroken") {
}
if(eventSlave.relationship > 3) {
var index = State.variables.slaves.findIndex(function(s) { return s.ID == eventSlave.relationshipTarget; });
if(State.variables.slaves[index].devotion > 20) {
if(canWalk(State.variables.slaves[index])) {
if(canTalk(State.variables.slaves[index])) {
var relationshipSlave = State.variables.slaves.find(function(s) { return s.ID == eventSlave.relationshipTarget; });
if(relationshipSlave.devotion > 20) {
if(canWalk(relationshipSlave)) {
if(canTalk(relationshipSlave)) {
if(eventSlave.devotion > 50) {
if(eventSlave.trust > 50) {
if(State.variables.slaves[index].anus != 0) {
if(State.variables.slaves[index].dick != 1) {
if(State.variables.slaves[index].dick == 0 || canAchieveErection(State.variables.slaves[index])) {
if(State.variables.slaves[index].fetish == "dom" || State.variables.slaves[index].fetish == "sadist") {
if(relationshipSlave.anus != 0) {
if(relationshipSlave.dick != 1) {
if(relationshipSlave.dick == 0 || canAchieveErection(relationshipSlave)) {
if(relationshipSlave.fetish == "dom" || relationshipSlave.fetish == "sadist") {
State.variables.RETSevent.push("top exhaustion");
}
}
......
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