private void shotShipDraw(GameServiceImpl gameServer,int [][] positions) throws Exception {
for (int i=0; i< positions.length ;i++) {
Shot shot1 = new Shot();
shot1.setX(positions[i][0]);
shot1.setY(positions[i][1]);
Shot shot2 = new Shot();
shot2.setX(positions[i][0]);
shot2.setY(positions[i][1]);
gameServer.shot(1L,"maeve", shot1);
gameServer.shot(1L,"manuel", shot2);
}