game_client_logic_deb 1.8.406 → 1.8.409
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.
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
function addFormatStructureForTime(structure) {
|
|
381
381
|
this.b5j(structure);
|
|
382
382
|
}
|
|
383
|
-
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
383
|
+
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithTime, WithDate]);
|
|
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
|
@@ -387,7 +387,7 @@
|
|
|
387
387
|
initMetadataForClass(AppEnvironmentValue, 'AppEnvironmentValue', VOID, Enum);
|
|
388
388
|
//endregion
|
|
389
389
|
function GameEngineConfig() {
|
|
390
|
-
this.version = '1.8.
|
|
390
|
+
this.version = '1.8.409';
|
|
391
391
|
}
|
|
392
392
|
protoOf(GameEngineConfig).w3u = function () {
|
|
393
393
|
return this.version;
|
package/Logic_Debertz-engine.js
CHANGED
|
@@ -1917,8 +1917,8 @@
|
|
|
1917
1917
|
var originalRoomMode = tmp1_elvis_lhs == null ? newRoomMode : tmp1_elvis_lhs;
|
|
1918
1918
|
var isFirstRound = (fromRound == null ? 0 : fromRound) === 0;
|
|
1919
1919
|
var updateRating = isFirstRound && !isPrivate && newRoomMode.hasRatingSupport && originalRoomMode.hasRatingSupport;
|
|
1920
|
-
var
|
|
1921
|
-
return new EngineLogicConfig(false, isProduction,
|
|
1920
|
+
var isDevelopment = !isProduction;
|
|
1921
|
+
return new EngineLogicConfig(false, isProduction, isDevelopment, VOID, updateRating, validateFromClientActionTags, false, playerTimeoutFactorToFinishStep, openRoomIfFinished, VOID, isDevelopment);
|
|
1922
1922
|
};
|
|
1923
1923
|
protoOf(Companion_3).getServerEngineMode = function (roomMode, isPrivate, transition, fromRound, isProduction, validateFromClientActionTags, openRoomIfFinished, playerTimeoutFactorToFinishStep, $super) {
|
|
1924
1924
|
validateFromClientActionTags = validateFromClientActionTags === VOID ? true : validateFromClientActionTags;
|
|
@@ -55181,7 +55181,7 @@
|
|
|
55181
55181
|
var player = getPlayer(table.players, action.c8t_1);
|
|
55182
55182
|
var cardsOnTheTable = plus_0(table.cardsOnTable, new CardOnTable(action.c8t_1, table.cardsOnTable.o(), action.z8s_1));
|
|
55183
55183
|
var tmp2_$this = state.w6m();
|
|
55184
|
-
var tmp3_players = updateItem(table.players, onPutCardForPlayer(this, player, table, action.z8s_1, cardsOnTheTable, action.a8t_1, action.b8t_1), get_byIdPlayerPredicate()(player.playerId));
|
|
55184
|
+
var tmp3_players = updateItem(table.players, onPutCardForPlayer(this, player, table, action.z8s_1, cardsOnTheTable, action.a8t_1, action.d8t_1.u1(player.playerId) ? action.b8t_1 : false), get_byIdPlayerPredicate()(player.playerId));
|
|
55185
55185
|
var tmp0_safe_receiver = action.a8t_1;
|
|
55186
55186
|
var tmp;
|
|
55187
55187
|
if (tmp0_safe_receiver == null) {
|
|
@@ -55241,7 +55241,7 @@
|
|
|
55241
55241
|
var _iterator__ex2g4s_1 = players.l();
|
|
55242
55242
|
while (_iterator__ex2g4s_1.m()) {
|
|
55243
55243
|
var item_1 = _iterator__ex2g4s_1.n();
|
|
55244
|
-
var tmp$ret$6 = updatePlayerWhenPickBribe(this, item_1, action.f8t_1, cardsOnTable, getValue(playersCombinations, item_1.playerId), action.h8t_1);
|
|
55244
|
+
var tmp$ret$6 = updatePlayerWhenPickBribe(this, item_1, action.f8t_1, cardsOnTable, getValue(playersCombinations, item_1.playerId), action.f8t_1 === item_1.playerId ? action.h8t_1 : false);
|
|
55245
55245
|
destination_1.j(tmp$ret$6);
|
|
55246
55246
|
}
|
|
55247
55247
|
var tmp3_gameInfo = table.gameInfo.v8c(VOID, VOID, table.gameInfo.round.copy(VOID, action.g8t_1));
|