Skip to content

Commit

Permalink
🐛 Correction sur le multimoteur
Browse files Browse the repository at this point in the history
  • Loading branch information
ctruillet committed Apr 29, 2020
1 parent 94c588d commit e6bac06
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Binary file modified seekfox.jar
Binary file not shown.
4 changes: 3 additions & 1 deletion src/vue/LoadingScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ public void init(){
resultsScreen.init(ControlRequete.trierResultats(listControlRequete));
System.out.println(ControlRequete.trierResultats(listControlRequete).toString());
}else{
ControlRequete.trierResultats(listControlRequete);
for (ControlRequete controlRequete : listControlRequete) {
controlRequete.getResultat();
}
resultsScreen.init(listControlRequete.get(0).getResultat());
}

Expand Down

0 comments on commit e6bac06

Please sign in to comment.