We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1fcc838 + eb10f74 commit 5e7718cCopy full SHA for 5e7718c
changelog.txt
@@ -31,6 +31,7 @@ Template for new versions:
31
## New Features
32
33
## Fixes
34
+- `gui/unit-syndromes`: show the syndrome names properly in the UI
35
36
## Misc Improvements
37
gui/unit-syndromes.lua
@@ -245,7 +245,7 @@ local function getSyndromeName(syndrome_raw)
245
end
246
247
if syndrome_raw.syn_name ~= "" then
248
- syndrome_raw.syn_name:gsub("^%l", string.upper)
+ return syndrome_raw.syn_name:gsub("^%l", string.upper)
249
elseif is_transformation then
250
return "Body transformation"
251
0 commit comments