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