From b8fec360c3f4862e27981ee35c3700e42d8b48b8 Mon Sep 17 00:00:00 2001 From: Sebastian Fieber Date: Fri, 25 Jul 2025 02:20:26 +0200 Subject: [PATCH] typo --- files/lua_api/openmw/core.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/lua_api/openmw/core.lua b/files/lua_api/openmw/core.lua index 668c1c0fd0..7feed7843b 100644 --- a/files/lua_api/openmw/core.lua +++ b/files/lua_api/openmw/core.lua @@ -1205,8 +1205,8 @@ --- List of all @{#WeatherRecord}s. -- @field [parent=#Weather] #list<#WeatherRecord> records A read-only list of all @{#WeatherRecord}s in the world database, may be indexed by recordId. -- Implements [iterables#List](iterables.html#List) of #WeatherRecord. --- @usage local weather = core.weather.records.records['Cloudy'] -- get by id --- @usage local weather = core.weather.records.records[1] -- get by index +-- @usage local weather = core.weather.records['Cloudy'] -- get by id +-- @usage local weather = core.weather.records[1] -- get by index -- @usage -- Print all storms -- for _, weather in pairs(core.weather.records) do -- if weather.isStorm then