diff --git a/src/facilities/nursery/nurseryDatatypeCleanup.js b/src/facilities/nursery/nurseryDatatypeCleanup.js
index 5f06c6cc7744a6ef9a3abbad0369163e8f5e86f8..ece181ed0016d9cea67e1bf657642be4ca86a2fc 100644
--- a/src/facilities/nursery/nurseryDatatypeCleanup.js
+++ b/src/facilities/nursery/nurseryDatatypeCleanup.js
@@ -368,7 +368,7 @@ App.Facilities.Nursery.ChildDatatypeCleanup = function(child) {
 		if (typeof child.porn.focus !== "string") {
 			child.porn.focus = "none";
 		}
-		for (const genre in App.Porn.getAllGenres()) {
+		for (const genre of App.Porn.getAllGenres()) {
 			child.porn.fame[genre.fameVar] = Math.max(+child.porn.fame[genre.fameVar], 0) || 0;
 		}
 	}
diff --git a/src/js/SlaveState.js b/src/js/SlaveState.js
index bba1fc89a4b0e339b394c68ad81c9b9df75a9d1d..ffa9cbd4e4594fb8772ff2850192ad71022b11d2 100644
--- a/src/js/SlaveState.js
+++ b/src/js/SlaveState.js
@@ -107,7 +107,7 @@ App.Entity.SlavePornPerformanceState = class {
 
 		/** fame values for each porn genre */
 		this.fame = { };
-		for (const genre in App.Porn.getAllGenres()) {
+		for (const genre of App.Porn.getAllGenres()) {
 			this.fame[genre.fameVar] = 0;
 		}
 	}
diff --git a/src/js/datatypeCleanupJS.js b/src/js/datatypeCleanupJS.js
index 1eea345bde048811b66ca3478eac59351d9bb402..a15930d361acf01bf5df9730f2ca2d4e9247a0ed 100644
--- a/src/js/datatypeCleanupJS.js
+++ b/src/js/datatypeCleanupJS.js
@@ -910,7 +910,7 @@ window.SlaveDatatypeCleanup = (function SlaveDatatypeCleanup() {
 		if (typeof slave.porn.focus !== "string") {
 			slave.porn.focus = "none";
 		}
-		for (const genre in App.Porn.getAllGenres()) {
+		for (const genre of App.Porn.getAllGenres()) {
 			slave.porn.fame[genre.fameVar] = Math.max(+slave.porn.fame[genre.fameVar], 0) || 0;
 		}
 
@@ -1465,7 +1465,7 @@ window.childPornDatatypeCleanup = function childPornDatatypeCleanup(child) {
 	if (typeof child.porn.focus !== "string") {
 		child.porn.focus = "none";
 	}
-	for (const genre in App.Porn.getAllGenres()) {
+	for (const genre of App.Porn.getAllGenres()) {
 		child.porn.fame[genre.fameVar] = Math.max(+child.porn.fame[genre.fameVar], 0) || 0;
 	}
 };
diff --git a/src/player/js/PlayerState.js b/src/player/js/PlayerState.js
index 13f84ce2f4f1a6bca17c686cdde03921453da4e1..578511a999b7a49ad2853cea82d0114a5b230c50 100644
--- a/src/player/js/PlayerState.js
+++ b/src/player/js/PlayerState.js
@@ -228,7 +228,7 @@ App.Entity.PlayerPornPerformanceState = class {
 		this.focus = "none";
 		/** your fame in each porn genre */
 		this.fame = { };
-		for (const genre in App.Porn.getAllGenres()) {
+		for (const genre of App.Porn.getAllGenres()) {
 			this.fame[genre.fameVar] = 0;
 		}
 	}