1
0

Added missing closing } in message output

This commit is contained in:
Lukas Pioch 2019-09-20 14:33:26 +02:00 committed by peterbell10
parent bec642525c
commit 70d0b46b60

View File

@ -216,7 +216,7 @@ static int tolua_cBlockArea_GetBlockTypeMeta(lua_State * a_LuaState)
readVector3iOverloadParams(L, 2, coords, "coords");
if (!self->IsValidCoords(coords))
{
return L.FApiParamError("Coords ({0}) out of range ({1} - {2).",
return L.FApiParamError("Coords ({0}) out of range ({1} - {2}).",
coords, self->GetOrigin(), self->GetOrigin() + self->GetSize() - Vector3i{1, 1, 1}
);
}