mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Don't call a player event without having player to do a event for
This commit is contained in:
parent
a4c987b339
commit
2a5c88bde1
2 changed files with 9 additions and 1 deletions
|
@ -61,6 +61,9 @@ void ScriptApiEnv::environment_Step(float dtime)
|
|||
void ScriptApiEnv::player_event(ServerActiveObject* player, std::string type)
|
||||
{
|
||||
SCRIPTAPI_PRECHECKHEADER
|
||||
|
||||
if (player == NULL)
|
||||
return;
|
||||
|
||||
// Get minetest.registered_playerevents
|
||||
lua_getglobal(L, "minetest");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue