diff options
author | Kahrl <kahrl@gmx.net> | 2012-01-22 15:57:49 +0100 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-01-22 17:31:20 +0200 |
commit | 0a426f359205c1a25f400b2079e374be40724d6a (patch) | |
tree | cce30d50ce4baab244d5c304595589ea8db34355 /src | |
parent | 00bc9a8678e8ddbe305f0f2d8dc36334b6733ef7 (diff) | |
download | minetest-0a426f359205c1a25f400b2079e374be40724d6a.tar.gz minetest-0a426f359205c1a25f400b2079e374be40724d6a.tar.bz2 minetest-0a426f359205c1a25f400b2079e374be40724d6a.zip |
Fix give_initial_stuff mod; experimental mod: dug_item -> drop; scriptapi.cpp: drops -> drop
Diffstat (limited to 'src')
-rw-r--r-- | src/scriptapi.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/scriptapi.cpp b/src/scriptapi.cpp index 173e5a827..5d68793e2 100644 --- a/src/scriptapi.cpp +++ b/src/scriptapi.cpp @@ -888,11 +888,11 @@ static ContentFeatures read_content_features(lua_State *L, int index) warn_if_field_exists(L, index, "light_propagates", "deprecated: determined from paramtype"); warn_if_field_exists(L, index, "dug_item", - "deprecated: use 'drops' field"); + "deprecated: use 'drop' field"); warn_if_field_exists(L, index, "extra_dug_item", - "deprecated: use 'drops' field"); + "deprecated: use 'drop' field"); warn_if_field_exists(L, index, "extra_dug_item_rarity", - "deprecated: use 'drops' field"); + "deprecated: use 'drop' field"); // True for all ground-like things like stone and mud, false for eg. trees getboolfield(L, index, "is_ground_content", f.is_ground_content); |