diff --git a/builtin/game/features.lua b/builtin/game/features.lua index 8bbfdf275..8e5fe61d9 100644 --- a/builtin/game/features.lua +++ b/builtin/game/features.lua @@ -47,7 +47,7 @@ core.features = { particle_blend_clip = true, remove_item_match_meta = true, httpfetch_additional_methods = true, - vision_color_transform = true, + color_transform_matrix = true, } function core.has_feature(arg) diff --git a/doc/lua_api.md b/doc/lua_api.md index a525b2452..78f1ef215 100644 --- a/doc/lua_api.md +++ b/doc/lua_api.md @@ -5811,7 +5811,7 @@ Utilities -- The HTTP API supports the HEAD and PATCH methods (5.12.0) httpfetch_additional_methods = true, -- Scene color can be transformed by transform matrix (5.13.0) - vision_color_transform = true, + color_transform_matrix = true, } ```