From 6513b55584093a86ce1e369e054263dd75c295c8 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Mon, 21 Dec 2015 13:17:47 +0100 Subject: [PATCH] fix default outline color actually, white doesn't look so bad for an outline, maybe that should be the default (but 255 then, not -1) --- src/world/block.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/block.cpp b/src/world/block.cpp index c861893..f518b64 100644 --- a/src/world/block.cpp +++ b/src/world/block.cpp @@ -76,7 +76,7 @@ BlockType::BlockType() noexcept , textures() , hsl_mod(0, 255, 255) , rgb_mod(255, 255, 255) -, outline_color(-1, -1, -1) +, outline_color(0, 0, 0) , gravity() , name("anonymous") , label("some block") -- 2.39.2