Skip to content
Snippets Groups Projects
Commit 3b166abe authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

The property is ver1_1, not ver_1.1

This should fix the binkd issue.
parent 67d64417
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -1240,7 +1240,7 @@ BinkP.prototype.recvFrame = function(timeout) ...@@ -1240,7 +1240,7 @@ BinkP.prototype.recvFrame = function(timeout)
log(LOG_WARNING, 'Peer ended their VER with " '+m[2]+'" instead of the required " binkp/1.1", but we\'re assuming binkp 1.1 anyway'); log(LOG_WARNING, 'Peer ended their VER with " '+m[2]+'" instead of the required " binkp/1.1", but we\'re assuming binkp 1.1 anyway');
} }
log(LOG_DEBUG, "Parsed BinkP version: " + binkp_ver); log(LOG_DEBUG, "Parsed BinkP version: " + binkp_ver);
this.ver_1_1 = binkp_ver >= 1.1; this.ver1_1 = binkp_ver >= 1.1;
} }
break; break;
case 'ZYZ': case 'ZYZ':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment