v7.0.12
Details
-
FilenameSavedInstances-v7.0.12.zip
-
Uploaded by
-
UploadedDec 6, 2017
-
Size211.42 KB
-
Downloads50,105
-
MD56752518ead6365a1c2bfd079b5fdcee5
Supported WoW Retail Versions
- 7.3.0
Changelog
tag 1f676e575e1cb771f04ba80c10f1cf8d182104a9 v7.0.12
Author: Benjamin Staneck <[email protected]>
Date: Wed Dec 6 23:48:32 2017 +0100
commit 58546de9aebc9d9bbb1d9212c776c28a0b4eefd8
Author: chancedj <[email protected]>
Date: Wed Dec 6 17:35:07 2017 -0500
update parentID from 1640 to 1610
the instanceID is incorrect for the parent. gotten using the following code:
--[[
local lfrCount = GetNumRFDungeons();
for lfrNdx = 1, lfrCount do
local instanceID, _, _, _, _, _, _, _, _, _, _, _, difficulty, _, _, _
, _, _, _, instanceName, _ = GetRFDungeonInfo( lfrNdx );
if( string.find( instanceName, "Antorus" ) ) then
print( "LRFName: ", instanceName, " instanceID: " , instanceID );
end;
end -- for lfrNdx = 1, lfrCount
--]]