diff options
author | Rui <rui.minetest@gmail.com> | 2017-01-10 04:39:45 +0900 |
---|---|---|
committer | Ner'zhul <nerzhul@users.noreply.github.com> | 2017-01-09 20:39:45 +0100 |
commit | ec30d49e026af2d0cb8329eb66aec48d12e79839 (patch) | |
tree | 65a96127eb50412dfbd6f5d120809a58ff510ec7 /builtin/game/features.lua | |
parent | 8e7449e09253e138716d8dbad6a2ab5c6e089e28 (diff) | |
download | minetest-ec30d49e026af2d0cb8329eb66aec48d12e79839.tar.gz minetest-ec30d49e026af2d0cb8329eb66aec48d12e79839.tar.bz2 minetest-ec30d49e026af2d0cb8329eb66aec48d12e79839.zip |
Add staticdata parameter to add_entity (#5009)
* Add staticdata parameter to add_entity
* Add add_entity_with_staticdata to core.features
Diffstat (limited to 'builtin/game/features.lua')
-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 2aad458da..646b254ea 100644 --- a/builtin/game/features.lua +++ b/builtin/game/features.lua @@ -9,6 +9,7 @@ core.features = { no_legacy_abms = true, texture_names_parens = true, area_store_custom_ids = true, + add_entity_with_staticdata = true, } function core.has_feature(arg) |