Fixed wrong temperature and temperature -> rainfall (#347)

This commit is contained in:
Sandertv 2017-02-11 21:15:22 +01:00 committed by Dylan K. Taylor
parent 06de85fd33
commit d430ad50be

View File

@ -49,11 +49,11 @@ class ForestBiome extends GrassyBiome{
$this->setElevation(63, 81);
if($type === self::TYPE_BIRCH){
$this->temperature = 0.5;
$this->temperature = 0.6;
$this->rainfall = 0.5;
}else{
$this->temperature = 0.7;
$this->temperature = 0.8;
$this->rainfall = 0.8;
}
}