Skip to content

Commit

Permalink
Attempt at #1601
Browse files Browse the repository at this point in the history
  • Loading branch information
sprunk authored Jul 16, 2024
1 parent be73aea commit 60a23af
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions rts/Lua/LuaSyncedRead.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3333,10 +3333,10 @@ static int GetUnitTableCentroid(lua_State *const L, const int indexWithinTable,
* Returns nil for an empty array
*
* @function Spring.GetUnitArrayCentroid
* @table units { unitID, unitID, ... }
* @treturn centerX
* @treturn centerY
* @treturn centerZ
* @tparam table units { unitID, unitID, ... }
* @treturn number centerX
* @treturn number centerY
* @treturn number centerZ
*/
int LuaSyncedRead::GetUnitArrayCentroid(lua_State* L)
{
Expand All @@ -3348,10 +3348,10 @@ int LuaSyncedRead::GetUnitArrayCentroid(lua_State* L)
* Returns nil for an empty map
*
* @function Spring.GetUnitMapCentroid
* @table units { [unitID] = true, [unitID] = true, ... }
* @treturn centerX
* @treturn centerY
* @treturn centerZ
* @tparam table units { [unitID] = true, [unitID] = true, ... }
* @treturn number centerX
* @treturn number centerY
* @treturn number centerZ
*/
int LuaSyncedRead::GetUnitMapCentroid(lua_State* L)
{
Expand Down

0 comments on commit 60a23af

Please sign in to comment.