@magic-xpa/engine 4.900.0-dev490.12 → 4.900.0-dev490.15
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/esm2020/src/CurrentClientVersion.mjs +2 -2
- package/esm2020/src/util/Scrambler.mjs +3 -2
- package/fesm2015/magic-xpa-engine.mjs +3 -2
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +3 -2
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -4132,9 +4132,10 @@ class Scrambler {
|
|
|
4132
4132
|
if (high > (sqrt / 2))
|
|
4133
4133
|
high = Math.floor(sqrt / 2);
|
|
4134
4134
|
delta = (Math.random() * (high - low)) + low;
|
|
4135
|
+
delta = Math.floor(delta);
|
|
4135
4136
|
if (delta === Scrambler.XML_ILLEGAL_RANDOM)
|
|
4136
4137
|
delta++;
|
|
4137
|
-
return
|
|
4138
|
+
return delta;
|
|
4138
4139
|
}
|
|
4139
4140
|
static UnScramble(inVal, beginOffSet, endOffSet) {
|
|
4140
4141
|
if (!Scrambler.ScramblingEnabled) {
|
|
@@ -29516,7 +29517,7 @@ class CommandsTable {
|
|
|
29516
29517
|
}
|
|
29517
29518
|
}
|
|
29518
29519
|
|
|
29519
|
-
let CurrentClientVersion = '4.900.0-dev490.
|
|
29520
|
+
let CurrentClientVersion = '4.900.0-dev490.15';
|
|
29520
29521
|
|
|
29521
29522
|
class ClientManager {
|
|
29522
29523
|
constructor() {
|