Skip to content

Commit

Permalink
Do not request a reply for Set messages
Browse files Browse the repository at this point in the history
The client does not have any special handling of the SetReply messages
that would be received from the server in response to sending Set
messages with want_reply=True.
  • Loading branch information
Mysteryem committed Oct 5, 2024
1 parent 10d01c2 commit 3bcc396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/kh2/Client.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ async def checkWorldLocations(self):
self.last_world_int = currentworldint
await self.send_msgs([{
"cmd": "Set", "key": "Slot: " + str(self.slot) + " :CurrentWorld",
"default": 0, "want_reply": True, "operations": [{
"default": 0, "want_reply": False, "operations": [{
"operation": "replace",
"value": currentworldint
}]
Expand Down

0 comments on commit 3bcc396

Please sign in to comment.