1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-19 19:53:53 +00:00

Rename API_VERSION -> API_REVISION in Lua API.

This commit is contained in:
Petr Mikheev 2021-07-25 15:36:25 +02:00
parent 3e4c0b775d
commit 2938aaf05c
2 changed files with 3 additions and 3 deletions

View file

@ -31,7 +31,7 @@ namespace MWLua
{
auto* lua = context.mLua;
sol::table api(lua->sol(), sol::create);
api["API_VERSION"] = 1;
api["API_REVISION"] = 1;
api["sendGlobalEvent"] = [context](std::string eventName, const sol::object& eventData)
{
context.mGlobalEventQueue->push_back({std::move(eventName), LuaUtil::serialize(eventData, context.mSerializer)});

View file

@ -7,8 +7,8 @@
-------------------------------------------------------------------------------
-- The version of OpenMW Lua API. It is an integer that is incremented every time the API is changed.
-- @field [parent=#core] #number API_VERSION
-- The revision of OpenMW Lua API. It is an integer that is incremented every time the API is changed.
-- @field [parent=#core] #number API_REVISION
-------------------------------------------------------------------------------
-- Send an event to global scripts.