Prend une image au hasard dans les 150 qui existent lors de la génération de la planète
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Nigel Sheldon 2021-02-17 17:17:09 +01:00
parent 16c71524b1
commit 93dd3e187a
1 changed files with 1 additions and 5 deletions

View File

@ -684,21 +684,17 @@ class Planete extends Surface
$this->id_user = $id_user;
//Génération du nombre de case et de l'image en fonction de la position dans le système
$this->image = mt_rand(1, 150);
if ($mere) {
$this->cases = 225;
$this->image = mt_rand(1, 19);
} elseif ($this->position > $VAR['nb_planete']*0.75) {
$this->cases = mt_rand(200, 255);
$this->image = mt_rand(1, 19);
} elseif ($this->position > $VAR['nb_planete']/2) {
$this->cases = mt_rand(250, 300);
$this->image = mt_rand(1, 19);
} elseif ($this->position > $VAR['nb_planete']/4) {
$this->cases = mt_rand(175, 260);
$this->image = mt_rand(1, 19);
} else {
$this->cases = mt_rand(150, 220);
$this->image = mt_rand(1, 19);
}
//Définition des principaux paramètres de la planète