game_client_logic_deb 1.8.370 → 1.8.371
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
|
@@ -383,7 +383,7 @@
|
|
|
383
383
|
initMetadataForClass(AppEnvironmentValue, 'AppEnvironmentValue', VOID, Enum);
|
|
384
384
|
//endregion
|
|
385
385
|
function GameEngineConfig() {
|
|
386
|
-
this.version = '1.8.
|
|
386
|
+
this.version = '1.8.371';
|
|
387
387
|
}
|
|
388
388
|
protoOf(GameEngineConfig).u3u = function () {
|
|
389
389
|
return this.version;
|
package/Logic_Debertz-engine.js
CHANGED
|
@@ -42779,6 +42779,9 @@
|
|
|
42779
42779
|
var kLoss = Math.max(tmp0, b_0);
|
|
42780
42780
|
var raw = item.n6x_1 + kBase * (kWin * diffPos + kLoss * diffNeg);
|
|
42781
42781
|
var newRating = clampAndRound($this, raw, minUserRating, maxUserRating);
|
|
42782
|
+
if (item.p6x_1 && newRating < item.n6x_1) {
|
|
42783
|
+
newRating = item.n6x_1;
|
|
42784
|
+
}
|
|
42782
42785
|
tmp$ret$3 = new PlayerRatingOutput(item.m6x_1, item.n6x_1, newRating, item.p6x_1);
|
|
42783
42786
|
}
|
|
42784
42787
|
destination.j(tmp$ret$3);
|