Enhance speech frame behavior and settings

This commit is contained in:
Roman Jaroš 2025-03-04 07:49:19 +01:00
parent e37886072f
commit 8b53a5247c
12 changed files with 65 additions and 43 deletions

View file

@ -125,6 +125,7 @@ local function ApplySpeechPlaceholders(text)
local formatted = text;
formatted = string.gsub(formatted, '<name>', playerName);
formatted = string.gsub(formatted, 'Champions', playerName);
formatted = string.gsub(formatted, 'champions', playerName);
return formatted
end