Lazy sunday typo fixing. s/unban_player_of_ip/unban_player_or_ip/g
authorKahrl <kahrl@gmx.net>
Sun, 16 Jun 2013 12:07:12 +0000 (14:07 +0200)
committerKahrl <kahrl@gmx.net>
Sun, 16 Jun 2013 12:07:12 +0000 (14:07 +0200)
src/script/lua_api/luaapi.cpp
src/script/lua_api/luaapi.h

index 6d7e32730dc191351e5fb4f30a2620a8700c97aa..180a44b266da9bf3ec749ec5af09be42da57a1fc 100644 (file)
@@ -72,7 +72,7 @@ bool ModApiBasic::Initialize(lua_State* L,int top) {
        retval &= API_FCT(get_ban_list);
        retval &= API_FCT(get_ban_description);
        retval &= API_FCT(ban_player);
-       retval &= API_FCT(unban_player_of_ip);
+       retval &= API_FCT(unban_player_or_ip);
        retval &= API_FCT(get_password_hash);
        retval &= API_FCT(notify_authentication_modified);
 
@@ -353,7 +353,7 @@ int ModApiBasic::l_ban_player(lua_State *L)
 }
 
 // unban_player_or_ip()
-int ModApiBasic::l_unban_player_of_ip(lua_State *L)
+int ModApiBasic::l_unban_player_or_ip(lua_State *L)
 {
        NO_MAP_LOCK_REQUIRED;
        const char * ip_or_name = luaL_checkstring(L, 1);
index 592046965ca6b3251f3174f202400e81c84ab8f6..9623502c27867be618ce01e2d2aed1ff713662bb 100644 (file)
@@ -85,7 +85,7 @@ private:
        static int l_ban_player(lua_State *L);
 
        // unban_player_or_ip()
-       static int l_unban_player_of_ip(lua_State *L);
+       static int l_unban_player_or_ip(lua_State *L);
 
        // show_formspec(playername,formname,formspec)
        static int l_show_formspec(lua_State *L);