Refactor Encounters, use new translations format for save space

This commit is contained in:
Roman Jaroš 2025-04-17 19:04:49 +02:00
parent 7d9f58650a
commit 908f45eb9b
59 changed files with 103852 additions and 58396 deletions

View file

@ -39,7 +39,7 @@ end
local function GetSpeech(message)
local index = BuildIndex(message)
local speech = addon.data.speech[index];
local text = speech and speech.text or nil
local text = speech and speech.m or nil
if text then
return FillPlaceholders(FillNumbers(text, message))
else