From c34bdceb9412deae9c4c2411a442025d4385373a Mon Sep 17 00:00:00 2001 From: shenjack <3695888@qq.com> Date: Sun, 11 Dec 2022 10:29:57 +0800 Subject: [PATCH] feat: render sr1 ship --- Difficult_Rocket/client/render/sr1_ship.py | 0 Difficult_Rocket/main.py | 4 +--- 2 files changed, 1 insertion(+), 3 deletions(-) create mode 100644 Difficult_Rocket/client/render/sr1_ship.py diff --git a/Difficult_Rocket/client/render/sr1_ship.py b/Difficult_Rocket/client/render/sr1_ship.py new file mode 100644 index 0000000..e69de29 diff --git a/Difficult_Rocket/main.py b/Difficult_Rocket/main.py index 4da0294..60722fb 100644 --- a/Difficult_Rocket/main.py +++ b/Difficult_Rocket/main.py @@ -22,7 +22,7 @@ if __name__ == '__main__': # been start will not run this sys.path.append('/bin/libs') sys.path.append('/bin') -from Difficult_Rocket import client, server, DR_option +from Difficult_Rocket import client, DR_option from Difficult_Rocket.utils import tools from Difficult_Rocket.utils.translate import tr @@ -56,7 +56,6 @@ class Game: def setup(self) -> None: self.client = client.Client(net_mode='local') - self.server = server.Server(net_mode='local') def python_version_check(self) -> None: # best 3.8+ and write at 3.8.10 self.logger.info('{} {}'.format(tr['main']['version.now_on'], self.on_python_v)) @@ -69,7 +68,6 @@ class Game: # @new_thread('main') def _start(self): - self.server.run() threaded = False if threaded: try: