1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-04-30 14:11:24 +00:00

class -> classes

This commit is contained in:
Zackhasacat 2023-10-23 22:23:30 -05:00
parent 611f96ce65
commit 254bf7c5d8
2 changed files with 2 additions and 2 deletions

View file

@ -162,7 +162,7 @@ namespace MWLua
api["factions"] = &MWBase::Environment::get().getWorld()->getStore().get<ESM::Faction>(); api["factions"] = &MWBase::Environment::get().getWorld()->getStore().get<ESM::Faction>();
initCoreClassBindings(context); initCoreClassBindings(context);
api["class"] = &MWBase::Environment::get().getWorld()->getStore().get<ESM::Class>(); api["classes"] = &MWBase::Environment::get().getWorld()->getStore().get<ESM::Class>();
api["l10n"] = LuaUtil::initL10nLoader(lua->sol(), MWBase::Environment::get().getL10nManager()); api["l10n"] = LuaUtil::initL10nLoader(lua->sol(), MWBase::Environment::get().getL10nManager());
const MWWorld::Store<ESM::GameSetting>* gmstStore const MWWorld::Store<ESM::GameSetting>* gmstStore

View file

@ -16,7 +16,7 @@
--- ---
-- A read-only list of all @{#ClassRecord}s in the world database. -- A read-only list of all @{#ClassRecord}s in the world database.
-- @field [parent=#core] #list<#ClassRecord> class -- @field [parent=#core] #list<#ClassRecord> classes
--- ---
-- Terminates the game and quits to the OS. Should be used only for testing purposes. -- Terminates the game and quits to the OS. Should be used only for testing purposes.