summaryrefslogtreecommitdiff
path: root/src/script/cpp_api/s_env.h
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2016-03-07 19:34:48 +0100
committerest31 <MTest31@outlook.com>2016-03-07 19:54:26 +0100
commit725cb4eb0743a382851e011fb7de1b7d443ce51f (patch)
tree62abb7455295dc270191c2aeb2272f011ffd2d14 /src/script/cpp_api/s_env.h
parentd494733839e9cf6cb557462326ed21e7a58816c7 (diff)
downloadminetest-725cb4eb0743a382851e011fb7de1b7d443ce51f.tar.gz
minetest-725cb4eb0743a382851e011fb7de1b7d443ce51f.tar.bz2
minetest-725cb4eb0743a382851e011fb7de1b7d443ce51f.zip
s_env.{cpp, h} cleanups
* Replace string by-val passing with const reference * Fix code style * Remove redundant `int table` definition and indentation level
Diffstat (limited to 'src/script/cpp_api/s_env.h')
-rw-r--r--src/script/cpp_api/s_env.h5
1 files changed, 3 insertions, 2 deletions
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,