client_plugin_logic_deb 1.8.499 → 1.8.500
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 +1 -1
- package/Logic_Debertz-engine.js +8 -11
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +5 -11
- package/Logic_Debertz-game_client.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +6 -6
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-coroutines-core.js +1 -1
- package/package.json +1 -1
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
function addFormatStructureForTime(structure) {
|
|
381
381
|
this.y6t(structure);
|
|
382
382
|
}
|
|
383
|
-
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
383
|
+
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithDate, WithTime]);
|
|
384
384
|
initMetadataForClass(Builder_0, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder]);
|
|
385
385
|
initMetadataForClass(LocalDateTimeFormat, 'LocalDateTimeFormat', VOID, AbstractDateTimeFormat);
|
|
386
386
|
function set_fractionOfSecond(value) {
|
package/Logic_Debertz-core.js
CHANGED
|
@@ -456,7 +456,7 @@
|
|
|
456
456
|
initMetadataForClass(BrowserCompressionService, 'BrowserCompressionService', BrowserCompressionService, VOID, [CompressionService], [2]);
|
|
457
457
|
//endregion
|
|
458
458
|
function GameEngineConfig() {
|
|
459
|
-
this.version = '1.8.
|
|
459
|
+
this.version = '1.8.500';
|
|
460
460
|
}
|
|
461
461
|
protoOf(GameEngineConfig).f48 = function () {
|
|
462
462
|
return this.version;
|
package/Logic_Debertz-engine.js
CHANGED
|
@@ -43040,7 +43040,7 @@
|
|
|
43040
43040
|
function Companion_186() {
|
|
43041
43041
|
}
|
|
43042
43042
|
protoOf(Companion_186).ja4 = function (isEnableChat, isBotsEnabled, isEnableChoosePartnerScreen) {
|
|
43043
|
-
return new Options(isEnableChat, isBotsEnabled, BotIntelligenceLevel_SUPER_HARD_getInstance(), 1000,
|
|
43043
|
+
return new Options(isEnableChat, isBotsEnabled, BotIntelligenceLevel_SUPER_HARD_getInstance(), 1000, 2000, isEnableChoosePartnerScreen);
|
|
43044
43044
|
};
|
|
43045
43045
|
protoOf(Companion_186).getServerOptions = function (isEnableChat, isBotsEnabled, isEnableChoosePartnerScreen, $super) {
|
|
43046
43046
|
isEnableChat = isEnableChat === VOID ? true : isEnableChat;
|
|
@@ -43057,7 +43057,7 @@
|
|
|
43057
43057
|
isBotsEnabled = isBotsEnabled === VOID ? true : isBotsEnabled;
|
|
43058
43058
|
botIntelligenceLevel = botIntelligenceLevel === VOID ? BotIntelligenceLevel_SUPER_HARD_getInstance() : botIntelligenceLevel;
|
|
43059
43059
|
timeForCountdownMillis = timeForCountdownMillis === VOID ? 1000 : timeForCountdownMillis;
|
|
43060
|
-
timeForBotMillis = timeForBotMillis === VOID ?
|
|
43060
|
+
timeForBotMillis = timeForBotMillis === VOID ? 2000 : timeForBotMillis;
|
|
43061
43061
|
isEnableChoosePartnerScreen = isEnableChoosePartnerScreen === VOID ? true : isEnableChoosePartnerScreen;
|
|
43062
43062
|
this.isEnableChat = isEnableChat;
|
|
43063
43063
|
this.isBotsEnabled = isBotsEnabled;
|
|
@@ -63073,15 +63073,12 @@
|
|
|
63073
63073
|
return new playerTurnTimerStopMiddleware$$inlined$middlewareForActionType$1(isEnableBotForPlayer);
|
|
63074
63074
|
}
|
|
63075
63075
|
function getBotTime(random, timeForBot) {
|
|
63076
|
-
|
|
63077
|
-
|
|
63078
|
-
var
|
|
63079
|
-
if (
|
|
63080
|
-
|
|
63081
|
-
|
|
63082
|
-
tmp = timeForBot;
|
|
63083
|
-
}
|
|
63084
|
-
return tmp;
|
|
63076
|
+
if (random == null)
|
|
63077
|
+
return new Long(0, 0);
|
|
63078
|
+
var from = new Long(300, 0);
|
|
63079
|
+
if (compare(from, timeForBot) >= 0)
|
|
63080
|
+
return timeForBot;
|
|
63081
|
+
return random.uj(from, timeForBot);
|
|
63085
63082
|
}
|
|
63086
63083
|
function playerTurnTimerStartMiddleware$$inlined$middlewareForActionType$1($isEnableTimerForPlayer, $playerTurnInteractor, $botConfig, $mergeTimers) {
|
|
63087
63084
|
this.bb0_1 = $isEnableTimerForPlayer;
|