From 3d8ef8ff2a887d750f2f01c4c08c838fb15723b6 Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Thu, 28 Sep 2023 15:14:42 -0400
Subject: [PATCH] Add missing semicolons

---
 src/js/utilsPC.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/js/utilsPC.js b/src/js/utilsPC.js
index 1e4a468784d..f97828b8206 100644
--- a/src/js/utilsPC.js
+++ b/src/js/utilsPC.js
@@ -1107,7 +1107,7 @@ globalThis.PCPenetrationWarning = function(holes = "vaginal first", escape = fal
 		result += `WARNING# This option ${action} take your ${virgins[0]} virginity.`;
 	}
 	return result;
-}
+};
 
 /** Returns "true" if the player can be receptive to penetration, even if the sexualOpenness policy is not adopted. This function should only be used to offer options to the player, it does not imply true willingness.
  * @param {any} [penetrator = null]  If a slave is passed as an argument, it also takes into account if slave.toyHole is "dick".
@@ -1134,7 +1134,7 @@ globalThis.isPlayerReceptive = function(penetrator = null) {
 		return true; // forcedFertDrugs influence the behavior of the player, who unconsciously wants to be fertilized
 	}
 	return false;
-}
+};
 
 /** Determine if the player favors masturbation over sex.
  * Currently not used much, but will be used more with the addition of new .pregMoods
-- 
GitLab