From 859f4498e17c052962adb3b6f2d25604ca0c34d1 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 10 Sep 2020 15:48:02 +0200 Subject: [PATCH] Fix snippet text color --- snippets.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets.lua b/snippets.lua index fa8341d..694b225 100644 --- a/snippets.lua +++ b/snippets.lua @@ -4,7 +4,7 @@ tt.register_snippet(function(itemstring) local def = minetest.registered_items[itemstring] if def._tt_help then - return def._tt_help, false + return def._tt_help end end)