X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2Fapp.cpp;h=1e82cab998b789e6a9be2fc62723defc2e012128;hb=1c2994622a6b73f90cbd3ec9c09ffb4d7724cab4;hp=2d5aa4fd05b6eb5df3653878d0bd7af6551a1317;hpb=86d82a0b535e88d841a927f3574cc9bd228f55fe;p=blank.git diff --git a/src/app/app.cpp b/src/app/app.cpp index 2d5aa4f..1e82cab 100644 --- a/src/app/app.cpp +++ b/src/app/app.cpp @@ -337,8 +337,10 @@ void AssetLoader::LoadBlockTypes(const std::string &set_name, BlockTypeRegistry } else if (name == "texture") { in.ReadString(tex_name); type.texture = tex_index.GetID(tex_name); - } else if (name == "color") { - in.ReadVec(type.color); + } else if (name == "rgb_mod") { + in.ReadVec(type.rgb_mod); + } else if (name == "hsl_mod") { + in.ReadVec(type.hsl_mod); } else if (name == "outline") { in.ReadVec(type.outline_color); } else if (name == "label") {