@magic-xpa/engine 4.1000.0-dev4100.431 → 4.1000.0-dev4100.436

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.
@@ -4214,6 +4214,8 @@ class Scrambler {
4214
4214
  let currChr;
4215
4215
  let length = inVal.length;
4216
4216
  let random = Scrambler.RandomScramble(length);
4217
+ if (random === -18)
4218
+ random = Scrambler.RandomScramble(length);
4217
4219
  let key = Math.floor(Math.sqrt(length)) + random;
4218
4220
  let outVal = new StringBuilder(length + 1);
4219
4221
  outVal.Append(String.fromCharCode(random + 81));
@@ -29566,7 +29568,7 @@ class CommandsTable {
29566
29568
  }
29567
29569
  }
29568
29570
 
29569
- let CurrentClientVersion = '4.1000.0-dev4100.431';
29571
+ let CurrentClientVersion = '4.1000.0-dev4100.436';
29570
29572
 
29571
29573
  class ClientManager {
29572
29574
  static get Instance() {