diff options
author | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-03-24 08:59:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-24 08:59:52 +0100 |
commit | 329d654e378ffc80711687bae0e516ea1712e63c (patch) | |
tree | c6bcbe001c7975aac32ce7ad95a4ec2f06902b7a /builtin/common/misc_helpers.lua | |
parent | dd2f1d7551bfd70357ad4f3fb180704194272147 (diff) | |
download | minetest-329d654e378ffc80711687bae0e516ea1712e63c.tar.gz minetest-329d654e378ffc80711687bae0e516ea1712e63c.tar.bz2 minetest-329d654e378ffc80711687bae0e516ea1712e63c.zip |
Typo fix
Diffstat (limited to 'builtin/common/misc_helpers.lua')
-rw-r--r-- | builtin/common/misc_helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/common/misc_helpers.lua b/builtin/common/misc_helpers.lua index 2318cea12..1d5b51fc6 100644 --- a/builtin/common/misc_helpers.lua +++ b/builtin/common/misc_helpers.lua @@ -671,7 +671,7 @@ else local color_code = core.get_color_escape_sequence(color) for i, line in ipairs(lines) do - lines[i] = colour_code .. line + lines[i] = color_code .. line end return table.concat(lines, "\n") .. core.get_color_escape_sequence("#ffffff") |