Skip to content

Commit

Permalink
Fixed The Underrot for french clients
Browse files Browse the repository at this point in the history
  • Loading branch information
Meivyn committed Aug 19, 2018
1 parent acaa9d0 commit ea8d995
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### v1.1.1
- [x] Fixed The Underrot for french clients

### v1.1.0
- [x] Added zhTW locale, thanks to BNSSNB
- [x] Fixed Deadmines for french clients
Expand Down
3 changes: 3 additions & 0 deletions EncounterJournalSavedInstances.lua
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ if locale == "frFR" then
["Tempest Keep: The Mechanar"] = "Donjon de la Tempête : le Méchanar",
["The Escape from Durnholde"] = "L'évasion de Fort-de-Durn",
["The Sunwell"] = "Le Puits de soleil",
["The Underrot"] = "Tréfonds Putrides",
["World Bosses"] = "Boss hors instance"
}
elseif locale == "zhTW" then
Expand Down Expand Up @@ -277,6 +278,8 @@ local function UpdateSavedInstances()
instanceName = EJ_GetInstanceInfo(283)
elseif instanceName == L['Deadmines'] and locale == "frFR" then
instanceName = EJ_GetInstanceInfo(63)
elseif instanceName == L['The Underrot'] and locale == "frFR" then
instanceName = EJ_GetInstanceInfo(1022)
elseif instanceName == L["Assault on Violet Hold"] then
maxBosses = 3
end
Expand Down
2 changes: 1 addition & 1 deletion EncounterJournalSavedInstances.toc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
## Notes: Adds instance status indicators to Encounter Journal.
## Notes-frFR: Ajoute des indicateurs de verrouillage d'instance au journal des rencontres.
## Author: Meivyn
## Version: 1.1.0
## Version: 1.1.1

EncounterJournalSavedInstances.lua

0 comments on commit ea8d995

Please sign in to comment.