summaryrefslogtreecommitdiff
path: root/src/script/clientscripting.cpp
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2017-01-28 18:31:23 +0100
committerLoïc Blot <nerzhul@users.noreply.github.com>2017-03-13 23:56:05 +0100
commitba66fce8339f818a638f97679bd29da064a8c1c6 (patch)
treead770bd6129be5f1b9058aaca8f773f09631e323 /src/script/clientscripting.cpp
parenta50d07d39a76053328846d82a32bac61468bb16f (diff)
downloadminetest-ba66fce8339f818a638f97679bd29da064a8c1c6.tar.gz
minetest-ba66fce8339f818a638f97679bd29da064a8c1c6.tar.bz2
minetest-ba66fce8339f818a638f97679bd29da064a8c1c6.zip
[CSM] storage + fixes
Diffstat (limited to 'src/script/clientscripting.cpp')
-rw-r--r--src/script/clientscripting.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/script/clientscripting.cpp b/src/script/clientscripting.cpp
index 390d21a3a..aaed2865d 100644
--- a/src/script/clientscripting.cpp
+++ b/src/script/clientscripting.cpp
@@ -22,6 +22,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "client.h"
#include "cpp_api/s_internal.h"
#include "lua_api/l_client.h"
+#include "lua_api/l_storage.h"
#include "lua_api/l_sound.h"
#include "lua_api/l_util.h"
@@ -53,4 +54,5 @@ void ClientScripting::InitializeModApi(lua_State *L, int top)
ModApiUtil::InitializeClient(L, top);
ModApiClient::Initialize(L, top);
ModApiSound::Initialize(L, top);
+ ModApiStorage::Initialize(L, top);
}