diff --git a/Client/mods/deathmatch/logic/luadefs/CLuaCompatibilityDefs.cpp b/Client/mods/deathmatch/logic/luadefs/CLuaCompatibilityDefs.cpp index 7a189cdb9e..7dea8f95bf 100644 --- a/Client/mods/deathmatch/logic/luadefs/CLuaCompatibilityDefs.cpp +++ b/Client/mods/deathmatch/logic/luadefs/CLuaCompatibilityDefs.cpp @@ -71,8 +71,6 @@ void CLuaCompatibilityDefs::LoadFunctions() {"getControlState", CLuaPedDefs::GetPedControlState}, {"setCameraShakeLevel", ArgumentParserWarn}, {"getCameraShakeLevel", ArgumentParserWarn}, - {"base64Encode", CLuaCryptDefs::EncodeString}, - {"base64Decode", CLuaCryptDefs::DecodeString}, }; // Add functions diff --git a/Server/mods/deathmatch/logic/luadefs/CLuaCompatibilityDefs.cpp b/Server/mods/deathmatch/logic/luadefs/CLuaCompatibilityDefs.cpp index 0ce798bb45..0336b375b0 100644 --- a/Server/mods/deathmatch/logic/luadefs/CLuaCompatibilityDefs.cpp +++ b/Server/mods/deathmatch/logic/luadefs/CLuaCompatibilityDefs.cpp @@ -89,10 +89,6 @@ void CLuaCompatibilityDefs::LoadFunctions() lua_pushboolean(luaVM, false); return 1; }}, - - // Base Encoding & Decoding - {"base64Encode", CLuaCryptDefs::EncodeString}, - {"base64Decode", CLuaCryptDefs::DecodeString}, }; // Add functions