From e4cd905d4b09644d926e542c48fcb8f10193d9bb Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Sun, 26 Jan 2020 15:03:12 -0800 Subject: [PATCH] fixes --- src/facilities/nursery/nurseryDatatypeCleanup.js | 2 +- src/js/SlaveState.js | 2 +- src/js/datatypeCleanupJS.js | 4 ++-- src/player/js/PlayerState.js | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/facilities/nursery/nurseryDatatypeCleanup.js b/src/facilities/nursery/nurseryDatatypeCleanup.js index 5f06c6cc774..ece181ed001 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 bba1fc89a4b..ffa9cbd4e45 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 1eea345bde0..a15930d361a 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 13f84ce2f4f..578511a999b 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; } } -- GitLab