From 0c864665bb52848ffb0525209944ecaf2edf19ad Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Thu, 16 Apr 2026 18:46:48 +0200 Subject: [PATCH] fix missing semicolon --- src/TLuaEngine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TLuaEngine.cpp b/src/TLuaEngine.cpp index cd3562a..7b33284 100644 --- a/src/TLuaEngine.cpp +++ b/src/TLuaEngine.cpp @@ -572,7 +572,7 @@ sol::table TLuaEngine::StateThreadData::Lua_GetPlayerIdentifiers(int ID) { } sol::table Result = mStateView.create_table(); for (const auto& Pair : IDs) { - Result.set(Pair.first, Pair.second) + Result.set(Pair.first, Pair.second); } return Result; } else {