diff options
author | SmallJoker <SmallJoker@users.noreply.github.com> | 2019-06-06 19:13:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-06 19:13:29 +0200 |
commit | cb00632e23a41d8d171631de9d85e168b251b80e (patch) | |
tree | 684787f3056df0d5ab7b0e1cb504c2b6866ae334 /builtin | |
parent | 7379aa74cf98c7e4c7aa5325ef1531d412a0abac (diff) | |
download | minetest-cb00632e23a41d8d171631de9d85e168b251b80e.tar.gz minetest-cb00632e23a41d8d171631de9d85e168b251b80e.tar.bz2 minetest-cb00632e23a41d8d171631de9d85e168b251b80e.zip |
HTTP API: Allow binary downloads and headers (#8573)
Add minetest.features.httpfetch_binary_data
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/game/features.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/game/features.lua b/builtin/game/features.lua index 8e5104867..cf21303c7 100644 --- a/builtin/game/features.lua +++ b/builtin/game/features.lua @@ -12,6 +12,7 @@ core.features = { no_chat_message_prediction = true, object_use_texture_alpha = true, object_independent_selectionbox = true, + httpfetch_binary_data = true, } function core.has_feature(arg) |