Examples of concede()


Examples of mage.players.Player.concede()

  @Override
  public synchronized void concede(UUID playerId) {
    Player player = state.getPlayer(playerId);
    if (player != null) {
      player.concede(this);
      fireInformEvent(player.getName() + " has conceded.");
    }
  }

  @Override
View Full Code Here

Examples of mage.players.Player.concede()

    public synchronized void concede(UUID playerId) {
        Player player = state.getPlayer(playerId);
        if (player != null) {
            logger.debug(new StringBuilder("Player ").append(player.getName()).append(" concedes game ").append(this.getId()));
            fireInformEvent(player.getName() + " has conceded.");
            player.concede(this);
        }
    }

    @Override
    public synchronized void undo(UUID playerId) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.