10% army spawn bonus

lopdo, did you throw in a Math.floor()? Or not?
var spawns:int = largestConnectedLand() * 1.1 will round it up, so if you have 5 lands, it will be 6.
But if lopdo did this
var spawns:int = Math.floor(largestCOnnectedLand() * 1.1) then it only takes effect when you have 10.
what did lopdo do?
var spawns:int = largestConnectedLand() * 1.1 will round it up, so if you have 5 lands, it will be 6.
But if lopdo did this
var spawns:int = Math.floor(largestCOnnectedLand() * 1.1) then it only takes effect when you have 10.
what did lopdo do?