File tree 2 files changed +3
-4
lines changed 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -954,7 +954,7 @@ private OutPacketBuffer onServerLogonChallenge(InPacketBuffer in){
954
954
for (int Y = 0 ; Y < SRP .BIGINT_SIZE ; Y ++)
955
955
reply .addByte (salt [Y ]);
956
956
for (int Y = 0 ; Y < SRP .BIGINT_SIZE ; Y ++)
957
- reply .addDWord (B [Y ]);
957
+ reply .addByte (B [Y ]);
958
958
return reply ;
959
959
}
960
960
private OutPacketBuffer onServerLogonProof (InPacketBuffer in ){
@@ -992,7 +992,6 @@ private OutPacketBuffer onServerLogonProof(InPacketBuffer in){
992
992
byte [] M2 = reservedSRPs [slot ].getM2 (reservedSRPs [slot ].get_A (), reservedSRPs [slot ].get_B ());
993
993
OutPacketBuffer reply = new OutPacketBuffer (BNLS_SERVERLOGONPROOF );
994
994
reply .addDWord (slot );
995
- if (equal (M1 , M2 ))
996
995
reply .addDWord ((equal (M1 , M2 ) ? 0x01 : 0x00 ));
997
996
for (int Y = 0 ; Y < 5 ; Y ++)
998
997
reply .addDWord (M1 [Y ]);
@@ -1112,4 +1111,4 @@ private OutPacketBuffer onUnknown(InPacketBuffer in){
1112
1111
return null ;
1113
1112
}
1114
1113
1115
- }// end of BNLS Parse class
1114
+ }// end of BNLS Parse class
Original file line number Diff line number Diff line change 1
1
# JBLS
2
2
Java Battle.net Logon Server- Java implementation of ValhallaLegend's BNLS protocol for interacting with Battle.net classic servers.
3
3
4
- # Disclaimer
4
+ ## Disclaimer
5
5
You hereby acknowledge that JBLS is offered as-is and without warranty,
6
6
expressed or implied. JBLS is not sponsored by Blizzard Entertainment or its
7
7
subsidiaries in absolutely any way. Battle.net&trade ; is a registered trademark
You can’t perform that action at this time.
0 commit comments