diff --git a/src/events/RE/reDrunkenTourist.js b/src/events/RE/reDrunkenTourist.js
index e66aa8a833fc635c4c6781a2b529f5f11a696dce..8aa95a7c35c10bbc1a993de9c180fbb188d9d6a1 100644
--- a/src/events/RE/reDrunkenTourist.js
+++ b/src/events/RE/reDrunkenTourist.js
@@ -7,7 +7,7 @@ App.Events.REDrunkenTourist = class REDrunkenTourist extends App.Events.BaseEven
 	}
 
 	execute(node) {
-		const tourist = GenerateNewSlave("XX", {race: "nonslave", disableDisability: 1});
+		const tourist = GenerateNewSlave("XX", {minAge: 21, maxAge: 29, race: "nonslave", disableDisability: 1});
 		tourist.origin = "$He came to your arcology as a tourist and found $himself enslaved.";
 		tourist.devotion = random(-70, -55);
 		tourist.trust = random(-45, -25);
@@ -20,7 +20,7 @@ App.Events.REDrunkenTourist = class REDrunkenTourist extends App.Events.BaseEven
 		tourist.behavioralQuirk = "none";
 		tourist.sexualQuirk = "none";
 		tourist.canRecruit = 0;
-		App.Events.drawEventArt(node, tourist, "slutty business attire"); // "nice business attire" is not currently supported by WebGL
+		App.Events.drawEventArt(node, tourist, "nice business attire");
 		App.Events.addParagraph(node, [
 			"While on a midnight stroll through the arcology, you notice a young woman stumbling along one of the pathways, looking lost.",
 			"From her clothing to her demeanor you can tell she is a tourist, and an extremely drunk one at that.",
diff --git a/src/events/RE/reMilfTourist.js b/src/events/RE/reMilfTourist.js
index d0954a638d781007186d86ef65228401862e7f9d..c9be305125c31c35b8ba6bd02f4a0eefbc274520 100644
--- a/src/events/RE/reMilfTourist.js
+++ b/src/events/RE/reMilfTourist.js
@@ -35,7 +35,7 @@ App.Events.REMilfTourist = class REMilfTourist extends App.Events.BaseEvent {
 		tourist.behavioralQuirk = "none";
 		tourist.sexualQuirk = "none";
 		tourist.canRecruit = 0;
-		tourist.clothes = "nice business attire";
+		tourist.clothes = "conservative clothing";
 
 		App.Events.drawEventArt(node, [milfSlave, tourist]);