Skip to content
Snippets Groups Projects
Commit b5b07841 authored by Ed86's avatar Ed86
Browse files

removed double check

parent 06e5c276
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ namespace rjw
}
if (!RJWSettings.bestiality_enabled && xxx.is_animal(target) && !(xxx.is_animal(rapist) && RJWSettings.animal_on_animal_enabled)) continue; //zoo disabled, skip.
if (target.CurJob.def == xxx.gettin_raped || target.CurJob.def == xxx.gettin_loved || target.CurJob.def == xxx.gettin_loved) continue; //already having sex with someone, skip, give chance to other victims.
if (target.CurJob.def == xxx.gettin_raped || target.CurJob.def == xxx.gettin_loved) continue; //already having sex with someone, skip, give chance to other victims.
//Log.Message("[RJW]"+this.GetType().ToString()+"::TryGiveJob( " + xxx.get_pawnname(rapist) + " -> " + xxx.get_pawnname(target) + " ) - checking\nCanReserve:"+ rapist.CanReserve(target, xxx.max_rapists_per_prisoner, 0) + "\nCanReach:" + rapist.CanReach(target, PathEndMode.OnCell, Danger.None)+ "\nCan_rape_Easily:" + Can_rape_Easily(target));
if (rapist.CanReserveAndReach(target, PathEndMode.OnCell, Danger.Some, xxx.max_rapists_per_prisoner, 0) && Can_rape_Easily(target) )
......
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