]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/script/lua_api/l_server.h
Attachments: Fix interpolation from (0,0,0) after detach
[dragonfireclient.git] / src / script / lua_api / l_server.h
index 0088107840d37a60e7299a9ad2a194b983d0083b..3aa1785a248295bed8c81dc544f57c8a21701caa 100644 (file)
@@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
-#ifndef L_SERVER_H_
-#define L_SERVER_H_
+#pragma once
 
 #include "lua_api/l_base.h"
 
@@ -68,13 +67,16 @@ class ModApiServer : public ModApiBase
        // sound_stop(handle)
        static int l_sound_stop(lua_State *L);
 
+       // sound_fade(handle, step, gain)
+       static int l_sound_fade(lua_State *L);
+
        // get_player_privs(name, text)
        static int l_get_player_privs(lua_State *L);
 
        // get_player_ip()
        static int l_get_player_ip(lua_State *L);
 
-       // get_player_information()
+       // get_player_information(name)
        static int l_get_player_information(lua_State *L);
 
        // get_ban_list()
@@ -92,6 +94,9 @@ class ModApiServer : public ModApiBase
        // kick_player(name, [message]) -> success
        static int l_kick_player(lua_State *L);
 
+       // remove_player(name)
+       static int l_remove_player(lua_State *L);
+
        // notify_authentication_modified(name)
        static int l_notify_authentication_modified(lua_State *L);
 
@@ -104,5 +109,3 @@ class ModApiServer : public ModApiBase
 public:
        static void Initialize(lua_State *L, int top);
 };
-
-#endif /* L_SERVER_H_ */