v7.0.12-nolib
Details
- 
                        FilenameSavedInstances-v7.0.12-nolib.zip
 - 
                        Uploaded by
 -  
                        UploadedDec 6, 2017
 -  
                        Size88.63 KB
 - 
                            Downloads674
 - 
                        MD5cc9f04b957ce8676c69b069d5a5995fa
 
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
        --]]