Module:HeroData: Difference between revisionsGive feedback
m if unable to find postfix key, use the key |
m if lang is missing a postfix, use no postfix |
||
| Line 172: | Line 172: | ||
postfix = lang_module._get_string(postfix) | postfix = lang_module._get_string(postfix) | ||
end | end | ||
-- if | -- if a language is missing the postfix, use no postfix | ||
if (postfix == nil) then | if (postfix == nil) then | ||
postfix = | postfix = "" | ||
end | end | ||
| Line 272: | Line 272: | ||
else | else | ||
postfix = lang_module._get_string(postfix) | postfix = lang_module._get_string(postfix) | ||
end | |||
-- if a language is missing the postfix, use no postfix | |||
if (postfix == nil) then | |||
postfix = "" | |||
end | end | ||