[Change] Tweaked obolete transportationPrice to be more realistic with masses.

This commit is contained in:
Allanis 2014-01-06 18:58:33 +00:00
parent 5a0f5ff145
commit 5fe30d3a3b

View File

@ -972,7 +972,7 @@ static int shipyard_yoursTransportPrice(char* shipname) {
if(strcmp(loc, land_planet->name)==0) /* Already here. */
return 0;
price = (int)ship->solid->mass*500;
price = (int)(sqrt(ship->solid->mass)*5000.);
return price;
}