diff --git a/src/interaction/useSlave/useSlave.js b/src/interaction/useSlave/useSlave.js
index 8cb4cceae51adfe1aa397a0d102fb82bc85a24e8..c0ef1e02e9476098c7a29fe09a4872bd41a69ad5 100644
--- a/src/interaction/useSlave/useSlave.js
+++ b/src/interaction/useSlave/useSlave.js
@@ -15,7 +15,7 @@ App.UI.SlaveInteract.useSlave = function(slave) {
 
 	const {he, him, his} = getPronouns(slave);
 
-	/** @type {Record<string, string>[]} */
+	/** @type {FC.UseSlave.Option[]} */
 	const log = [];
 	/** @enum {string} */
 	const none = "none";
@@ -135,7 +135,7 @@ App.UI.SlaveInteract.useSlave = function(slave) {
 			div.innerHTML = e.desc;
 			div.append(App.UI.DOM.makeElement("div", e.reaction, ['indent', 'italics']));
 
-			log.push({action: e.link});
+			log.push(new App.UI.SlaveInteract.Option(e.link, e.desc, e.tooltip, e.prereq, e.effect, e.reaction));
 
 			e.effect();
 
diff --git a/src/interaction/useSlave/useSlaveHelpers.js b/src/interaction/useSlave/useSlaveHelpers.js
index 1dd3f35329bffd4534a625d6459cc92e7950e8f3..f267aeaeff4b2906d4980ffd410a5860d98b244a 100644
--- a/src/interaction/useSlave/useSlaveHelpers.js
+++ b/src/interaction/useSlave/useSlaveHelpers.js
@@ -17,6 +17,25 @@ App.UI.SlaveInteract.Action = {
 	VAGINAL: 'vaginal',
 };
 
+App.UI.SlaveInteract.Option = class Option {
+	/**
+	 * @param {string} link
+	 * @param {string} desc
+	 * @param {string} tooltip
+	 * @param {() => boolean} prereq
+	 * @param {() => void} effect
+	 * @param {string} reaction
+	 */
+	constructor(link, desc, tooltip, prereq, effect, reaction) {
+		this.link = link;
+		this.desc = desc;
+		this.tooltip = tooltip;
+		this.prereq = prereq;
+		this.effect = effect;
+		this.reaction = reaction;
+	}
+};
+
 /** A class containing the different temporary variables and states for each participant. */
 App.UI.SlaveInteract.CharacterState = class CharacterState {
 	constructor() {