game_client_logic_deb 1.8.407 → 1.8.410
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-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.410';
|
|
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;
|