diff options
Diffstat (limited to 'src/script/clientscripting.cpp')
-rw-r--r-- | src/script/clientscripting.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/script/clientscripting.cpp b/src/script/clientscripting.cpp index 9bf93eb83..370324433 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_sound.h" #include "lua_api/l_util.h" ClientScripting::ClientScripting(Client *client): @@ -51,4 +52,5 @@ void ClientScripting::InitializeModApi(lua_State *L, int top) { ModApiUtil::InitializeClient(L, top); ModApiClient::Initialize(L, top); + ModApiSound::Initialize(L, top); } |