Changes

Let's achieve that with redirects instead.
Line 164: Line 164:  
        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
Anonymous user