diff --git a/Data/Scripts/001_Technical/001_Debugging/002_DebugConsole.rb b/Data/Scripts/001_Technical/001_Debugging/002_DebugConsole.rb index 775afb84c..45884ec35 100644 --- a/Data/Scripts/001_Technical/001_Debugging/002_DebugConsole.rb +++ b/Data/Scripts/001_Technical/001_Debugging/002_DebugConsole.rb @@ -152,7 +152,7 @@ module Console # Text markup that turns text between them a certain color def markup_colors { - "`" => :cyan, '"' => :purple, "'" => :purple, "$" => :green, "~" => :red + "`" => :cyan, '"' => :purple, "==" => :purple, "$" => :green, "~" => :red } end diff --git a/Data/Scripts/001_Technical/005_PluginManager.rb b/Data/Scripts/001_Technical/005_PluginManager.rb index 234d0886a..2c2a56578 100644 --- a/Data/Scripts/001_Technical/005_PluginManager.rb +++ b/Data/Scripts/001_Technical/005_PluginManager.rb @@ -651,7 +651,7 @@ module PluginManager # try to run the code begin eval(code, TOPLEVEL_BINDING, fname) - Console.echoln_li "Loaded plugin: '#{name}' (ver. #{meta[:version]})" if !echoed_plugins.include?(name) + Console.echoln_li "Loaded plugin: ==#{name}== (ver. #{meta[:version]})" if !echoed_plugins.include?(name) echoed_plugins.push(name) rescue Exception # format error message to display self.pluginErrorMsg(name, sname)