Fixed console message colouring breaking when loading a plugin whose name contains an apostrophe

This commit is contained in:
Maruno17
2022-05-21 19:20:35 +01:00
parent 98aeff01c5
commit a280fea093
2 changed files with 2 additions and 2 deletions

View File

@@ -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