From 69f43a05a0bf6b56140fa0b20075327dd3ead9f3 Mon Sep 17 00:00:00 2001 From: Skriv <skrivelese@gmail.com> Date: Thu, 14 May 2020 23:02:25 +0200 Subject: [PATCH] revert jsdoc change --- src/js/storyJS.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/js/storyJS.js b/src/js/storyJS.js index 3e5cd815e8d..c47ff9c7851 100644 --- a/src/js/storyJS.js +++ b/src/js/storyJS.js @@ -69,8 +69,8 @@ globalThis.filterInPlace = function(arr, callback, thisArg) { }; /** pregmod: are slave2's sperm compatible with slave1's eggs? - * @param {App.Entity.SlaveState | App.Entity.PlayerState} slave1 - * @param {App.Entity.SlaveState | App.Entity.PlayerState} slave2 + * @param {App.Entity.SlaveState} slave1 + * @param {App.Entity.SlaveState} slave2 * @returns {boolean} */ globalThis.canBreed = function(slave1, slave2) { @@ -83,8 +83,8 @@ globalThis.canBreed = function(slave1, slave2) { /** assuming slave1 is fertile, could slave2 impregnate slave1? * slave2 must have dick and balls with compatible sperm; * both slaves must not be in chastity; slave2 need not achieve erection - * @param {App.Entity.SlaveState | App.Entity.PlayerState} slave1 - * @param {App.Entity.SlaveState | App.Entity.PlayerState} slave2 + * @param {App.Entity.SlaveState} slave1 + * @param {App.Entity.SlaveState} slave2 * @returns {boolean} */ globalThis.canImpreg = function(slave1, slave2) { -- GitLab