1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-28 19:21:04 +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>();
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());
const MWWorld::Store<ESM::GameSetting>* gmstStore

View File

@ -16,7 +16,7 @@
---
-- 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.