From 0f83e6f47063e9c23f2e9f2769c400ff5bbba7cd Mon Sep 17 00:00:00 2001 From: Lars Mueller Date: Fri, 10 Sep 2021 12:20:50 +0200 Subject: [PATCH] Lower-case error messages --- minetest/colorspec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minetest/colorspec.lua b/minetest/colorspec.lua index b5816ae..612be12 100644 --- a/minetest/colorspec.lua +++ b/minetest/colorspec.lua @@ -209,7 +209,7 @@ function colorspec.from_string(string) r = (floor(num / (16 ^ 2)) % 16) * 17 } end - error("Invalid colorstring: " .. string) + error("invalid colorstring: " .. string) end colorspec.from_text = colorspec.from_string