Fix repetitive 'loaded comlinks' message when getting unrelated character updates over GMCP

This commit is contained in:
Matt Wagner 2021-10-16 15:02:59 -07:00
parent 5e17bf9101
commit 590d16d129
2 changed files with 7 additions and 1 deletions

2
mfile
View File

@ -1,4 +1,4 @@
{
"package": "lotj-ui",
"version": "v2.3.0"
"version": "v2.3.1"
}

View File

@ -19,12 +19,18 @@ end
function lotj.comlinkInfo.loadForChar()
local charName = gmcpVarByPath("Char.Info.name")
if charName and io.exists(getMudletHomeDir() .. "/comlinkdata_" .. charName .. ".lua") then
if charName == lotj.comlinkInfo.currentChar then
return
end
table.load(getMudletHomeDir() .. "/comlinkdata_" .. charName .. ".lua", lotj.comlinkInfo.comlinks)
if lotj.comlinkInfo.comlinks then
local comlinkCount = 0
for _, _ in pairs(lotj.comlinkInfo.comlinks) do
comlinkCount = comlinkCount+1
end
lotj.comlinkInfo.currentChar = charName
lotj.comlinkInfo.log("Loaded data for "..comlinkCount.." comlinks.")
end
end