summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
authorVincent Glize <vincentglize@hotmail.fr>2017-04-08 08:20:30 +0200
committerLoïc Blot <nerzhul@users.noreply.github.com>2017-04-08 08:20:30 +0200
commitf73534640a18709921519ee43110292cf658e67f (patch)
tree3a318762bb4768e4826ae216c1aa6e5ab026a437 /src/client.cpp
parentff4fef570e8df6ce44ceb1d9071f860474eb1f95 (diff)
downloadminetest-f73534640a18709921519ee43110292cf658e67f.tar.gz
minetest-f73534640a18709921519ee43110292cf658e67f.tar.bz2
minetest-f73534640a18709921519ee43110292cf658e67f.zip
[CSM] Add event on_connect player API lua (#5540)
* Add event on_connect player API lua
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp
index e710624d5..3a3e33cfd 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -1864,6 +1864,10 @@ void Client::afterContentReceived(IrrlichtDevice *device)
m_state = LC_Ready;
sendReady();
+
+ if (g_settings->getBool("enable_client_modding"))
+ m_script->on_connect();
+
text = wgettext("Done!");
draw_load_screen(text, device, guienv, 0, 100);
infostream<<"Client::afterContentReceived() done"<<std::endl;