Skip to content

Commit 3788683

Browse files
committed
Commenting out XTEA key sending since maps are not encrypted in the flat file store
1 parent be8a77f commit 3788683

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/engine/net/outbound-packet-handler.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ export class OutboundPacketHandler {
648648
for(let mapX = 29; mapX <= 30; mapX++) {
649649
const xteaRegion = xteaRegions[`l${mapX}_79`];
650650
for(let seeds = 0; seeds < 4; seeds++) {
651-
packet.put(xteaRegion?.key[seeds] || 0, 'int');
651+
packet.put(/*xteaRegion?.key[seeds] || */0, 'int');
652652
}
653653
}
654654

@@ -672,7 +672,7 @@ export class OutboundPacketHandler {
672672
for(let mapY = startY; mapY <= endY; mapY++) {
673673
const xteaRegion = xteaRegions[`l${mapX}_${mapY}`];
674674
for(let seeds = 0; seeds < 4; seeds++) {
675-
packet.put(xteaRegion?.key[seeds] || 0, 'int');
675+
packet.put(/*xteaRegion?.key[seeds] || */0, 'int');
676676
}
677677
}
678678
}

0 commit comments

Comments
 (0)