client_plugin_logic_deb 1.8.503 → 1.8.504

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2841,11 +2841,12 @@ export declare namespace games.jass.logic.redux.actions.game {
2841
2841
  }
2842
2842
  }
2843
2843
  class PartyRestartedAction extends games.jass.logic.redux.actions.game.GameAction.$metadata$.constructor {
2844
- constructor(id: string, roundNumber: number, gameHistory: games.jass.logic.data.models.table.history.GameHistory);
2844
+ constructor(id: string, roundNumber: number, gameHistory: games.jass.logic.data.models.table.history.GameHistory, abandonedRound: games.jass.logic.data.models.table.history.RoundHistory);
2845
2845
  get id(): string;
2846
2846
  get partyNumber(): number;
2847
2847
  get gameHistory(): games.jass.logic.data.models.table.history.GameHistory;
2848
- copy(id?: string, roundNumber?: number, gameHistory?: games.jass.logic.data.models.table.history.GameHistory): games.jass.logic.redux.actions.game.PartyRestartedAction;
2848
+ get abandonedRound(): games.jass.logic.data.models.table.history.RoundHistory;
2849
+ copy(id?: string, roundNumber?: number, gameHistory?: games.jass.logic.data.models.table.history.GameHistory, abandonedRound?: games.jass.logic.data.models.table.history.RoundHistory): games.jass.logic.redux.actions.game.PartyRestartedAction;
2849
2850
  toString(): string;
2850
2851
  hashCode(): number;
2851
2852
  equals(other: Nullable<any>): boolean;