Skip to content

Commit

Permalink
localize o table @line 615 (#1744)
Browse files Browse the repository at this point in the history
  • Loading branch information
DakJaniels committed Aug 22, 2024
1 parent ef61cfd commit 01c35da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Classes/Maps.lua
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ local function HarvestExploration(simplify)
-- Make sure the exploration header has all the objects
for _,areaID in ipairs(areaIDs) do
if not byExplorationID[areaID] then
o = app.CreateExploration(areaID);
local o = app.CreateExploration(areaID);
o.mapID = mapID;
o.parent = explorationHeader;
tinsert(explorationHeader.g, o);
Expand Down Expand Up @@ -1015,4 +1015,4 @@ app.AddEventRegistration("BOSS_KILL", function(id, name, ...)
-- Waiting until the LOOT_CLOSED occurs will prevent the failed Auto Loot bug.
-- print("BOSS_KILL", id, name, ...);
app:RegisterEvent("LOOT_CLOSED");
end);
end);

0 comments on commit 01c35da

Please sign in to comment.