diff --git a/src/controleur/ControleurJeu.java b/src/controleur/ControleurJeu.java index 2a7f283..1a83cc4 100644 --- a/src/controleur/ControleurJeu.java +++ b/src/controleur/ControleurJeu.java @@ -6,8 +6,8 @@ import model.*; public class ControleurJeu extends Thread { private static final int GAME_SPEED = 1000; - private static final int POS_INITIALE_JOUEUR_X = Plateau.TAILLE_X / 2 + 1; - private static final int POS_INITIALE_JOUEUR_Y = Plateau.TAILLE_Y / 2 + 1; + private static final int POS_INITIALE_JOUEUR_X = Plateau.TAILLE_X / 2 ; + private static final int POS_INITIALE_JOUEUR_Y = Plateau.TAILLE_Y / 2 ; private static final int VIES_INIT = Joueur.VIE_MAX; private static final int SCORE_ATTAQUE_INIT = Joueur.ATTAQUE_MAX / 2;