Code Duplication    Length = 4-7 lines in 2 locations

modules/bataille/app/controller/CentreRecherche.php 2 locations

@@ 133-139 (lines=7) @@
130
						$temps_recherche = $this->getTempsRecherche($obj->temps_recherche);
131
132
						//si niveau == 0 ca veut dire que la recherche n'a pas encore été effectuée dans la base
133
						if ($niveau > 0) {
134
							$cout = $this->getCoutRecherche($cout, $niveau);
135
							$temps_recherche = $this->getTempsRecherche($temps_recherche, $niveau);
136
						}
137
						else {
138
							$niveau_recherche = 1;
139
						}
140
141
						$recherhce[] = [
142
							"recherche" => $obj->recherche,
@@ 230-233 (lines=4) @@
227
				}
228
			}
229
230
			if ($niveau_recherche > 0) {
231
				$cout = $this->getCoutRecherche($cout, $niveau_recherche);
232
				$temps_recherche = $this->getTempsRecherche($temps_recherche, $niveau_recherche);
233
			}
234
235
			//on test si assez de ressources pour effectuer la recherche
236
			$eau = Bataille::getTestAssezRessourceBase("eau", $cout["eau"]);