raspberry_games_server_game_logic 1.8.287 → 1.8.288
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/Kotlin-DateTime-library-kotlinx-datetime.js +1 -1
- package/Logic_Debertz-core.js +20 -23
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +5 -3
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_server.d.ts +3 -3
- package/kotlinx-coroutines-core.js +7 -7
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -317,17 +317,17 @@ export declare namespace com.logic.data.models {
|
|
|
317
317
|
}
|
|
318
318
|
export declare namespace com.logic.data.models.player {
|
|
319
319
|
class GameUserInfo implements com.logic.data.models.player.PlayerIdContract {
|
|
320
|
-
constructor(playerId: string, name: string, avatarUrl?: Nullable<string>, isBot?: boolean,
|
|
320
|
+
constructor(playerId: string, name: string, avatarUrl?: Nullable<string>, isBot?: boolean, initialLuckyFactor?: Nullable<number>, rating?: Nullable<number>, payload?: Nullable<any>);
|
|
321
321
|
get playerId(): string;
|
|
322
322
|
get name(): string;
|
|
323
323
|
get avatarUrl(): Nullable<string>;
|
|
324
324
|
get isBot(): boolean;
|
|
325
|
-
get rating(): Nullable<number>;
|
|
326
325
|
get initialLuckyFactor(): Nullable<number>;
|
|
326
|
+
get rating(): Nullable<number>;
|
|
327
327
|
get payload(): Nullable<any>;
|
|
328
328
|
getRatingOrDefault(initialUserRating: number): number;
|
|
329
329
|
toString(): string;
|
|
330
|
-
copy(playerId?: string, name?: string, avatarUrl?: Nullable<string>, isBot?: boolean,
|
|
330
|
+
copy(playerId?: string, name?: string, avatarUrl?: Nullable<string>, isBot?: boolean, initialLuckyFactor?: Nullable<number>, rating?: Nullable<number>, payload?: Nullable<any>): com.logic.data.models.player.GameUserInfo;
|
|
331
331
|
hashCode(): number;
|
|
332
332
|
equals(other: Nullable<any>): boolean;
|
|
333
333
|
readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
|
|
@@ -226,11 +226,6 @@
|
|
|
226
226
|
initMetadataForClass(SendBroadcast, 'SendBroadcast', VOID, VOID, [Waiter]);
|
|
227
227
|
initMetadataForClass(BufferedChannelIterator, 'BufferedChannelIterator', VOID, VOID, [Waiter], [0, 3]);
|
|
228
228
|
initMetadataForCoroutine($sendCOROUTINE$3, CoroutineImpl);
|
|
229
|
-
function close$default(cause, $super) {
|
|
230
|
-
cause = cause === VOID ? null : cause;
|
|
231
|
-
return $super === VOID ? this.a16(cause) : $super.a16.call(this, cause);
|
|
232
|
-
}
|
|
233
|
-
initMetadataForInterface(SendChannel, 'SendChannel', VOID, VOID, VOID, [1]);
|
|
234
229
|
function cancel$default_0(cause, $super) {
|
|
235
230
|
cause = cause === VOID ? null : cause;
|
|
236
231
|
var tmp;
|
|
@@ -243,7 +238,12 @@
|
|
|
243
238
|
return tmp;
|
|
244
239
|
}
|
|
245
240
|
initMetadataForInterface(ReceiveChannel, 'ReceiveChannel', VOID, VOID, VOID, [0]);
|
|
246
|
-
|
|
241
|
+
function close$default(cause, $super) {
|
|
242
|
+
cause = cause === VOID ? null : cause;
|
|
243
|
+
return $super === VOID ? this.a16(cause) : $super.a16.call(this, cause);
|
|
244
|
+
}
|
|
245
|
+
initMetadataForInterface(SendChannel, 'SendChannel', VOID, VOID, VOID, [1]);
|
|
246
|
+
initMetadataForClass(BufferedChannel, 'BufferedChannel', VOID, VOID, [ReceiveChannel, SendChannel], [1, 4, 0, 3]);
|
|
247
247
|
initMetadataForClass(WaiterEB, 'WaiterEB');
|
|
248
248
|
initMetadataForClass(ReceiveCatching, 'ReceiveCatching', VOID, VOID, [Waiter]);
|
|
249
249
|
initMetadataForObject(Factory, 'Factory');
|
|
@@ -253,7 +253,7 @@
|
|
|
253
253
|
initMetadataForClass(ChannelResult, 'ChannelResult');
|
|
254
254
|
initMetadataForClass(ClosedSendChannelException, 'ClosedSendChannelException', VOID, IllegalStateException);
|
|
255
255
|
initMetadataForClass(ClosedReceiveChannelException, 'ClosedReceiveChannelException', VOID, NoSuchElementException);
|
|
256
|
-
initMetadataForClass(ChannelCoroutine, 'ChannelCoroutine', VOID, AbstractCoroutine, [AbstractCoroutine,
|
|
256
|
+
initMetadataForClass(ChannelCoroutine, 'ChannelCoroutine', VOID, AbstractCoroutine, [AbstractCoroutine, ReceiveChannel, SendChannel], [1, 0]);
|
|
257
257
|
initMetadataForClass(ConflatedBufferedChannel, 'ConflatedBufferedChannel', VOID, BufferedChannel, VOID, [1, 0]);
|
|
258
258
|
initMetadataForInterface(ProducerScope, 'ProducerScope', VOID, VOID, [CoroutineScope, SendChannel], [1]);
|
|
259
259
|
initMetadataForClass(ProducerCoroutine, 'ProducerCoroutine', VOID, ChannelCoroutine, [ChannelCoroutine, ProducerScope], [1, 0]);
|