From 083287f533084a44d2084a95163746b1b8c48f16 Mon Sep 17 00:00:00 2001 From: yuanyan3060 <58114805+yuanyan3060@users.noreply.github.com> Date: Wed, 5 Jan 2022 14:16:52 +0800 Subject: [PATCH 1/4] fix a bug --- src/MeoAssistant/RuntimeStatus.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/MeoAssistant/RuntimeStatus.h b/src/MeoAssistant/RuntimeStatus.h index c3febc163b..2ce5a364af 100644 --- a/src/MeoAssistant/RuntimeStatus.h +++ b/src/MeoAssistant/RuntimeStatus.h @@ -2,6 +2,7 @@ //#include #include +#include namespace asst { From 2d79d6e3ef2dd1676ea53f7010f6b3c35c3a86e9 Mon Sep 17 00:00:00 2001 From: yuanyan3060 <58114805+yuanyan3060@users.noreply.github.com> Date: Wed, 5 Jan 2022 17:04:57 +0800 Subject: [PATCH 2/4] fix a bug --- src/Python/sample.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Python/sample.py b/src/Python/sample.py index 42d2e8e327..b110196a03 100644 --- a/src/Python/sample.py +++ b/src/Python/sample.py @@ -36,7 +36,7 @@ if __name__ == "__main__": # asst.append_award() asst.start() - # asst.start_recurit_clac([4, 5, 6], True) + # asst.start_recurit_calc([4, 5, 6], True) while True: input('>') From 31ec7cc7ca89598c08a2c14e8a17c84210de7659 Mon Sep 17 00:00:00 2001 From: MistEO Date: Wed, 5 Jan 2022 18:11:32 +0800 Subject: [PATCH 3/4] =?UTF-8?q?fix.=E4=BF=AE=E5=A4=8D=E7=AC=94=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Python/sample.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Python/sample.py b/src/Python/sample.py index b110196a03..ab67d56970 100644 --- a/src/Python/sample.py +++ b/src/Python/sample.py @@ -36,7 +36,7 @@ if __name__ == "__main__": # asst.append_award() asst.start() - # asst.start_recurit_calc([4, 5, 6], True) + # asst.start_recruit_calc([4, 5, 6], True) while True: input('>') From 697bad0649e06d58c044494d403465ea6c4fdeb8 Mon Sep 17 00:00:00 2001 From: MistEO Date: Wed, 5 Jan 2022 18:12:15 +0800 Subject: [PATCH 4/4] =?UTF-8?q?fix.=E4=BF=AE=E5=A4=8D=E7=AC=94=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Python/interface.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Python/interface.py b/src/Python/interface.py index 1add7cec4f..015ccf6707 100644 --- a/src/Python/interface.py +++ b/src/Python/interface.py @@ -145,7 +145,7 @@ class Asst: """ return self.__lib.AsstStart(self.__ptr) - def start_recurit_calc(self, select_level: list, set_time: bool) -> bool: + def start_recruit_calc(self, select_level: list, set_time: bool) -> bool: """ 进行公招计算 @@ -237,4 +237,4 @@ class Asst: self.__lib.AsstSetPenguinId.argtypes = ( ctypes.c_void_p, ctypes.c_char_p) - self.__lib.AsstGetVersion.restype = ctypes.c_char_p \ No newline at end of file + self.__lib.AsstGetVersion.restype = ctypes.c_char_p