From 86585fbf4315bf03cd79dea95d6807a7cbcc8d3e Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Mon, 11 Jan 2021 23:04:02 +0100 Subject: [PATCH] Removed auto-relogin. --- rcon/proto.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/rcon/proto.py b/rcon/proto.py index ca11711..6b05d43 100644 --- a/rcon/proto.py +++ b/rcon/proto.py @@ -212,9 +212,6 @@ class Client: response = self.communicate(request) if response.id != request.id: - if self.passwd is not None and self.login(self.passwd): - return self.run(command, *arguments) - raise RequestIdMismatch(request.id, response.id) return response if raw else response.payload