From b637771a96d0cc3385ff0cfbb9d44c0399204eb3 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Thu, 30 Mar 2023 13:27:35 +0200 Subject: [PATCH] typo --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 6d8060f..559c53d 100644 --- a/main.py +++ b/main.py @@ -54,11 +54,11 @@ class Hack(): else: raise MemoryError - def find_variable(self, client, offset: int) -> int: + def find_variable(self, base, offset: int) -> int: """Find element in memory""" local_element = None while not local_element: - local_element = self.pm.read_uint(client + offset) + local_element = self.pm.read_uint(base + offset) sleep(self.timeout) return local_element