- Welcome to the Kancolle Wiki!
- If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord
Changes
Jump to navigation
Jump to search
Line 164:
Line 164:
− +
− +
− +
Let's achieve that with redirects instead.
local ship_name, ship_suffix
local ship_name, ship_suffix
if split then
if split then
ship_name = self:upcase(mw.ustring.sub(item_key, 1, split - 1))
ship_name = mw.ustring.sub(item_key, 1, split - 1)
ship_suffix = self:upcase(mw.ustring.sub(item_key, split + 1))
ship_suffix = mw.ustring.sub(item_key, split + 1)
else
else
ship_name = self:upcase(item_key)
ship_name = item_key
ship_suffix = ""
ship_suffix = ""
end
end