From 749f7a28f8ab1bb94f6cd46182fcb4ca474dda9d Mon Sep 17 00:00:00 2001
From: "Ryan P. McKinnon" <15917743+mrhoribu@users.noreply.github.com>
Date: Tue, 10 Feb 2026 18:30:03 -0500
Subject: [PATCH 1/2] Update lumnismon.lic
---
scripts/lumnismon.lic | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/lumnismon.lic b/scripts/lumnismon.lic
index 39042fdda..3804adf9a 100644
--- a/scripts/lumnismon.lic
+++ b/scripts/lumnismon.lic
@@ -114,13 +114,13 @@ module MyInfo
# @param text [String] the message to display
# @return [void]
def message(text)
- string = $fake_stormfront ? "\034GSL\r\n " : ""
+ string = monsterbold_start ? "\034GSL\r\n " : ""
string << if text.include?('\n')
text.split('\n').join
else
text
end
- string << ($fake_stormfront ? "\034GSM\r\n " : "")
+ string << (monsterbold_end ? "\034GSM\r\n " : "")
_respond string
end
From 4f419e4ac766bbd437352e09ad0f42a5fa09ca04 Mon Sep 17 00:00:00 2001
From: "Ryan P. McKinnon" <15917743+mrhoribu@users.noreply.github.com>
Date: Tue, 10 Feb 2026 18:31:27 -0500
Subject: [PATCH 2/2] Update mybounty.lic
---
scripts/mybounty.lic | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/mybounty.lic b/scripts/mybounty.lic
index 14a37a1ef..a999f4841 100644
--- a/scripts/mybounty.lic
+++ b/scripts/mybounty.lic
@@ -40,9 +40,9 @@ Please report any difficulties or bugs to Luxelle, this was a huge update or thr
#
def message(message)
- if $fake_stormfront then puts("\034GSL\r\n") else puts("") end
+ if monsterbold_start then puts("\034GSL\r\n") else puts("") end
puts("" + message)
- if $fake_stormfront then puts("\034GSM\r\n") else puts("") end
+ if monsterbold_end then puts("\034GSM\r\n") else puts("") end
end
gtk2_Active = (Gtk::Version::STRING.chr == '2')