client_plugin_logic_deb 1.8.437 → 1.8.439

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.
@@ -3326,9 +3326,9 @@ export declare namespace games.jass.logic.server.domain {
3326
3326
  roomOnDelete(newRid?: Nullable<string>): void;
3327
3327
  clear(): void;
3328
3328
  shutdown(reason: string, roomId?: Nullable<string>): void;
3329
- playerLostConnection(playerId: string): void;
3330
- playerLive(playerId: string): void;
3331
- playerLeft(playerId: string, permanently?: boolean): Nullable<games.jass.logic.data.models.player.state.PlayerLeftResult>;
3329
+ playerLostConnection(playerId: string, roomId: string): void;
3330
+ playerLive(playerId: string, roomId: string): void;
3331
+ playerLeft(playerId: string, roomId: string, permanently?: boolean): Nullable<games.jass.logic.data.models.player.state.PlayerLeftResult>;
3332
3332
  fromClientEvent(action: games.jass.logic.redux.actions.client.from.FromClientAction): void;
3333
3333
  roomRefreshPlayerState(playerId: string): void;
3334
3334
  getToClientFinishActionBeforeDisconnect(playerId: string, previousState: com.logic.data.models.player.PlayerConnectionState, originState: com.logic.data.models.player.PlayerConnectionState): Nullable<games.jass.logic.redux.actions.client.to.ToClientAction>;