From 725cb4eb0743a382851e011fb7de1b7d443ce51f Mon Sep 17 00:00:00 2001 From: est31 Date: Mon, 7 Mar 2016 19:34:48 +0100 Subject: s_env.{cpp, h} cleanups * Replace string by-val passing with const reference * Fix code style * Remove redundant `int table` definition and indentation level --- src/script/cpp_api/s_env.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/script/cpp_api/s_env.h') diff --git a/src/script/cpp_api/s_env.h b/src/script/cpp_api/s_env.h index 0d98e627f..e07024565 100644 --- a/src/script/cpp_api/s_env.h +++ b/src/script/cpp_api/s_env.h @@ -26,7 +26,8 @@ with this program; if not, write to the Free Software Foundation, Inc., class ServerEnvironment; struct ScriptCallbackState; -class ScriptApiEnv : virtual public ScriptApiBase { +class ScriptApiEnv : virtual public ScriptApiBase +{ public: // Called on environment step void environment_Step(float dtime); @@ -35,7 +36,7 @@ public: void environment_OnGenerated(v3s16 minp, v3s16 maxp, u32 blockseed); // Called on player event - void player_event(ServerActiveObject *player, std::string type); + void player_event(ServerActiveObject *player, const std::string &type); // Called after emerge of a block queued from core.emerge_area() void on_emerge_area_completion(v3s16 blockpos, int action, -- cgit v1.2.3