problème de skip de ligne de code en execution
	
	
		bonjour je code un jeu RPG mais une fois compilé en execution il skip le code de la ligne 9
	Code:
	
| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 
 | void combat(){
    while (Monster.life > 0){
        print_fight();
        if(fightMENU == 1){
            std::cin >> TMPint;
            if(TMPint == 1){
               degas_a_faire = jean.attaque_1.puissance;
               degas_a_faire + jean.attaque;
               Monster.life - degas_a_faire;
               fightMENU = 0;
               print_fight();
            }
            }
        if(fightMENU == 0){
            std::cin>>TMPint;
            if(TMPint == 1){fightMENU = 1;print_fight();}
            }
 
    }
 
 
}
void combat(){
    while (Monster.life > 0){
        print_fight();
        if(fightMENU == 1){
            std::cin >> TMPint;
            if(TMPint == 1){
               degas_a_faire = jean.attaque_1.puissance;
               degas_a_faire + jean.attaque;
               Monster.life - degas_a_faire;
               fightMENU = 0;
               print_fight();
            }
            }
        if(fightMENU == 0){
            std::cin>>TMPint;
            if(TMPint == 1){fightMENU = 1;print_fight();}
            }
 
    }
 
 
} | 
 :calim2::calim2::calim2: