PlaceDE-Official / zinnsoldat

Bookmarklet to inject the placeDE bot client into your browser.
53 stars 23 forks source link

Change version number to string to fix handshake #7

Closed Skillkiller closed 1 year ago

Skillkiller commented 1 year ago

The previous websocket handshake message is not valid because the version number was transmitted as a number: {"type":"Handshake","version":0.2}

Response: {"type": "InvalidRequest","msg": "Invalid Request - please have a look at the docs"}

Now the version number is transmitted as a string: {"type":"Handshake","version":"0.2"}

Response: {"type":"UpdateVersion","version":"0.2"}