s_env.{cpp, h} cleanups
* Replace string by-val passing with const reference * Fix code style * Remove redundant `int table` definition and indentation level
This commit is contained in:
@@ -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 @@ class ScriptApiEnv : virtual public ScriptApiBase {
|
||||
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,
|
||||
|
||||
Reference in New Issue
Block a user