From ffb41fc780a4849fa08f6c64cee1239a0bcc1536 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Tue, 29 Jun 2021 17:15:44 -0400
Subject: [PATCH] fix weight

---
 src/events/RE/reAWOL.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/events/RE/reAWOL.js b/src/events/RE/reAWOL.js
index bff2a01e43c..3d6c6535e64 100644
--- a/src/events/RE/reAWOL.js
+++ b/src/events/RE/reAWOL.js
@@ -7,7 +7,7 @@ App.Events.REAWOL = class REAWOL extends App.Events.BaseEvent {
 	}
 
 	get weight() {
-		return 0.5; // Originally rolled opposed to "RE Poker Night"
+		return either(0, 1); // Originally rolled opposed to "RE Poker Night"
 	}
 
 	execute(node) {
@@ -39,7 +39,6 @@ App.Events.REAWOL = class REAWOL extends App.Events.BaseEvent {
 		slave.custom.tattoo = "$He has a number of tattoos from a variety of mercenary companies.";
 		slave.clothes = "a military uniform";
 
-
 		const {
 			He,
 			he, him, his, woman
@@ -180,7 +179,8 @@ App.Events.REAWOL = class REAWOL extends App.Events.BaseEvent {
 		function flog(inHouse) {
 			const frag = new DocumentFragment();
 			let r = [];
-			r.push(`An example must be made. There is a binding contract between you and your ${V.mercenariesTitle}, and this ${woman} attempted to undermine it for ${his} own selfish profit. The protesting bitch is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public <span class="reputation inc">approves of this harshness.</span>`);
+			r.push(`An example must be made. There is a binding contract between you and your ${V.mercenariesTitle}, and this ${woman} attempted to undermine it for ${his} own selfish profit. The protesting bitch is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public <span class=""></span>`);
+			App.UI.DOM.makeElement("span", "approves of this harshness.", "reputation inc");
 			repX(5000, "event", slave);
 			if (inHouse) {
 				r.push(`In addition <span class="prosperity inc">Arcology prosperity improves,</span> a result of showing your citizens that you are willing and able to deal with such matters in-house.`);
-- 
GitLab