Changes

no edit summary
Line 7: Line 7:  
}
 
}
   −
function ShipCardKai:_card(ship, args)
+
function ShipCardKai:card(ship, args)
 +
if not args then
 +
args = ship
 +
ship = args.ship
 +
end
 
return Formatting:format_image{ship:card(), size = args.size or self._card_size, link = args.link, caption = args.caption}
 
return Formatting:format_image{ship:card(), size = args.size or self._card_size, link = args.link, caption = args.caption}
 
end
 
end
Line 13: Line 17:  
function ShipCardKai:Card(args)
 
function ShipCardKai:Card(args)
 
local ship = self:create_ship(args)
 
local ship = self:create_ship(args)
return self:_card(ship, args)
+
return self:card(ship, args)
 
end
 
end
   −
function ShipCardKai:_battle_card(ship, args)
+
function ShipCardKai:battle_card(ship, args)
 +
if not args then
 +
args = ship
 +
ship = args.ship
 +
end
 
return Formatting:format_image{ship:battle_card(), size = args.size or self._battle_card_size, link = args.link, caption = args.caption}
 
return Formatting:format_image{ship:battle_card(), size = args.size or self._battle_card_size, link = args.link, caption = args.caption}
 
end
 
end
Line 22: Line 30:  
function ShipCardKai:BattleCard(args)
 
function ShipCardKai:BattleCard(args)
 
local ship = self:create_ship(args)
 
local ship = self:create_ship(args)
return self:_battle_card(ship, args)
+
return self:battle_card(ship, args)
 
end
 
end
  
Anonymous user