@Override
public boolean executer(String parametres) {
Game game = CommandLineLauncher.getGame();
Player player = CommandLineLauncher.getCurrentPlayer();
ActionSkipTurn action = new ActionSkipTurn();
try {
action.playerActed(new ActionEvent(game, player, null, null, null));
} catch (ActionException e) {
// there shouldn't be any problem here !
e.printStackTrace();
}
game.registerAction(action);