summaryrefslogtreecommitdiff
path: root/po
diff options
context:
space:
mode:
authorkwolekr <kwolekr@minetest.net>2013-11-30 02:37:10 -0500
committerkwolekr <kwolekr@minetest.net>2013-11-30 02:37:10 -0500
commit9a927476ca22a28d0640ef35d95964c3077532ab (patch)
tree85c9ef4e68dee8d01b4aa2d9e03417bcff20203f /po
parentff7d7080e3ea2d2ca1669cb8c47c35a6c4753d39 (diff)
downloadminetest-9a927476ca22a28d0640ef35d95964c3077532ab.tar.gz
minetest-9a927476ca22a28d0640ef35d95964c3077532ab.tar.bz2
minetest-9a927476ca22a28d0640ef35d95964c3077532ab.zip
Change default value of is_ground_content to true
Most modders would otherwise forget to explicitly define this, and generated nodes aliased from mods would wall-off caves
Diffstat (limited to 'po')
0 files changed, 0 insertions, 0 deletions
com">with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #pragma once #include "util/pointedthing.h" #include "cpp_api/s_base.h" #include "mapnode.h" #include "itemdef.h" #include "util/string.h" #include "util/pointedthing.h" #include "lua_api/l_item.h" #ifdef _CRT_MSVCP_CURRENT #include <cstdint> #endif class ClientEnvironment; class ScriptApiClient : virtual public ScriptApiBase { public: // Calls on_shutdown handlers void on_shutdown(); // Chat message handlers bool on_sending_message(const std::string &message); bool on_receiving_message(const std::string &message); void on_damage_taken(int32_t damage_amount); void on_hp_modification(int32_t newhp); void on_death(); void environment_step(float dtime); void on_formspec_input(const std::string &formname, const StringMap &fields); bool on_dignode(v3s16 p, MapNode node); bool on_punchnode(v3s16 p, MapNode node); bool on_placenode(const PointedThing &pointed, const ItemDefinition &item); bool on_item_use(const ItemStack &item, const PointedThing &pointed);