From 4d250263d73b5d8d2554eb9bd8a4507e158cb273 Mon Sep 17 00:00:00 2001 From: uramer Date: Sat, 25 Nov 2023 17:01:26 +0100 Subject: [PATCH] Missing return type of split --- files/lua_api/openmw/core.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/files/lua_api/openmw/core.lua b/files/lua_api/openmw/core.lua index 609b6fffa5..18898b5002 100644 --- a/files/lua_api/openmw/core.lua +++ b/files/lua_api/openmw/core.lua @@ -265,6 +265,7 @@ -- @function [parent=#GameObject] split -- @param self -- @param #number count The number of items to return. +-- @return #GameObject -- @usage -- take 50 coins from `money` and put to the container `cont` -- money:split(50):moveInto(types.Container.content(cont))