Corrige le calcul des niveaux déjà construit pour chaque recherche
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

This commit is contained in:
Nigel Sheldon 2020-11-30 09:03:40 +01:00
parent 7667cf3bae
commit 8bb4fdf398

View File

@ -1624,8 +1624,8 @@ class dTechnologies implements Donnees
{
$niveau = 0;
// Si jamais cette techno a été recherchée au niveau 2 ou 3, aditionne les niveaux des trois technos
if (($niv = self::niveau($branche, $id)) > 0 && (self::idToBit($id) & $planete->technologies[$branche])) {
if ((self::idToBit($id+1) & $planete->technologies[$branche])) {
if (($niv = self::niveau($branche, $id)) > 0 && (self::idToBit($id+1) & $planete->technologies[$branche])) {
if ((self::idToBit($id+2) & $planete->technologies[$branche])) {
$niveau += $niv;
}
$niveau += $niv;