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 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')