client_plugin_logic_deb 1.8.502 → 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.
- package/Logic_Debertz-bot_engine.js +640 -640
- package/Logic_Debertz-client_plugin.d.ts +3 -2
- package/Logic_Debertz-client_plugin.js +2019 -2020
- package/Logic_Debertz-client_plugin.js.map +1 -1
- package/Logic_Debertz-core.js +18 -9
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +996 -984
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +5963 -5963
- package/Logic_Debertz-game_client.js.map +1 -1
- package/Logic_Debertz-game_server.js +896 -896
- package/kotlin-kotlin-stdlib.js +10 -10
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-coroutines-core.js +8 -8
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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;
|