Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/lumnismon.lic
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,13 @@ module MyInfo
# @param text [String] the message to display
# @return [void]
def message(text)
string = $fake_stormfront ? "\034GSL\r\n " : "<pushBold/>"
string = monsterbold_start ? "\034GSL\r\n " : "<pushBold/>"
string << if text.include?('\n')
text.split('\n').join
else
text
end
string << ($fake_stormfront ? "\034GSM\r\n " : "<popBold/>")
string << (monsterbold_end ? "\034GSM\r\n " : "<popBold/>")
_respond string
end

Expand Down
4 changes: 2 additions & 2 deletions scripts/mybounty.lic
Original file line number Diff line number Diff line change
Expand Up @@ -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("<pushBold\/>") end
if monsterbold_start then puts("\034GSL\r\n") else puts("<pushBold\/>") end
puts("" + message)
if $fake_stormfront then puts("\034GSM\r\n") else puts("<popBold\/>") end
if monsterbold_end then puts("\034GSM\r\n") else puts("<popBold\/>") end
end

gtk2_Active = (Gtk::Version::STRING.chr == '2')
Expand Down