Now population growth is implemented, population always tends to end up at the same number (unsurprisingly). This is on about line 111 in planet.cpp.
The carrying capacity is calculated by MAX_POPULATION * 0.7, meaning it's the same across all planets. It might be an idea to calculate it based on the planet's radius.
Now population growth is implemented, population always tends to end up at the same number (unsurprisingly). This is on about line 111 in
planet.cpp
.The carrying capacity is calculated by
MAX_POPULATION * 0.7
, meaning it's the same across all planets. It might be an idea to calculate it based on the planet's radius.