client_plugin_logic_deb 1.8.495 → 1.8.496
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-ai_module.js +285 -285
- package/Logic_Debertz-bot_engine.js +728 -728
- package/Logic_Debertz-client_plugin.d.ts +8 -3
- package/Logic_Debertz-client_plugin.js +2081 -2081
- package/Logic_Debertz-core.js +1771 -1671
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +12875 -12801
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +6890 -6889
- package/Logic_Debertz-game_client.js.map +1 -1
- package/Logic_Debertz-game_server.js +1722 -1371
- package/Logic_Debertz-game_server.js.map +1 -1
- package/package.json +1 -1
|
@@ -2729,6 +2729,7 @@ export declare namespace games.jass.logic.redux.actions.client.to {
|
|
|
2729
2729
|
abstract class constructor {
|
|
2730
2730
|
userFromTable(aid: string, table: games.jass.logic.data.models.table.JassTable, sendToPlayerId: string): games.jass.logic.redux.actions.client.to.ActionDeliveryPayload;
|
|
2731
2731
|
user(aid: string, tableId: string, sendToPlayerId: string): games.jass.logic.redux.actions.client.to.ActionDeliveryPayload;
|
|
2732
|
+
roomExceptUsers(aid: string, tableId: string, excludePlayerIds: kotlin.collections.KtList<string>): games.jass.logic.redux.actions.client.to.ActionDeliveryPayload;
|
|
2732
2733
|
private constructor();
|
|
2733
2734
|
}
|
|
2734
2735
|
}
|
|
@@ -2744,12 +2745,16 @@ export declare namespace games.jass.logic.redux.actions.client.to {
|
|
|
2744
2745
|
get name(): "ROOM_EXCEPT_USER";
|
|
2745
2746
|
get ordinal(): 1;
|
|
2746
2747
|
};
|
|
2748
|
+
static get ROOM_EXCEPT_USERS(): games.jass.logic.redux.actions.client.to.ActionDeliveryType & {
|
|
2749
|
+
get name(): "ROOM_EXCEPT_USERS";
|
|
2750
|
+
get ordinal(): 2;
|
|
2751
|
+
};
|
|
2747
2752
|
static get USER(): games.jass.logic.redux.actions.client.to.ActionDeliveryType & {
|
|
2748
2753
|
get name(): "USER";
|
|
2749
|
-
get ordinal():
|
|
2754
|
+
get ordinal(): 3;
|
|
2750
2755
|
};
|
|
2751
|
-
get name(): "ROOM_ALL" | "ROOM_EXCEPT_USER" | "USER";
|
|
2752
|
-
get ordinal(): 0 | 1 | 2;
|
|
2756
|
+
get name(): "ROOM_ALL" | "ROOM_EXCEPT_USER" | "ROOM_EXCEPT_USERS" | "USER";
|
|
2757
|
+
get ordinal(): 0 | 1 | 2 | 3;
|
|
2753
2758
|
static values(): Array<games.jass.logic.redux.actions.client.to.ActionDeliveryType>;
|
|
2754
2759
|
static valueOf(value: string): games.jass.logic.redux.actions.client.to.ActionDeliveryType;
|
|
2755
2760
|
}
|