From 0300566bbff6712230820efa06e465573605dcfa Mon Sep 17 00:00:00 2001 From: Mc-muffin <8714476+Mc-muffin@users.noreply.github.com> Date: Fri, 19 May 2023 08:23:47 -0500 Subject: [PATCH] Capitalization memes --- pythonlib/games/ToolsNDX.py | 6 +++--- pythonlib/games/ToolsTOR.py | 6 +++--- pythonlib/games/ToolsTales.py | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pythonlib/games/ToolsNDX.py b/pythonlib/games/ToolsNDX.py index 5c7ba61..a90852f 100644 --- a/pythonlib/games/ToolsNDX.py +++ b/pythonlib/games/ToolsNDX.py @@ -648,7 +648,7 @@ class ToolsNDX(ToolsTales): self.unpack_Folder( menu_file_path) - def extract_All_Menu(self): + def extract_all_Menu(self): res = [self.prepare_Menu_File(ele) for ele in list(set([ele['Hashes_Name'] for ele in self.menu_files_json if ele['Hashes_Name'] != '']))] @@ -660,9 +660,9 @@ class ToolsNDX(ToolsTales): #if file_definition['Hashes_Name'] != '': # self.prepare_Menu_File(file_definition['Hashes_Name']) - self.extract_Menu_File(file_definition) + self.extract_menu_file(file_definition) - def extract_Menu_File(self, file_definition): + def extract_menu_file(self, file_definition): section_list = [] diff --git a/pythonlib/games/ToolsTOR.py b/pythonlib/games/ToolsTOR.py index fab7124..a371f79 100644 --- a/pythonlib/games/ToolsTOR.py +++ b/pythonlib/games/ToolsTOR.py @@ -196,7 +196,7 @@ class ToolsTOR(ToolsTales): # Extract all the skits files - def extract_All_Skits(self, replace=False) -> None: + def extract_all_skits(self, replace=False) -> None: print("Extracting Skit files...") # TODO: use pathlib for everything @@ -744,7 +744,7 @@ class ToolsTOR(ToolsTales): output.write(data) - def pack_Main_Archive(self): + def pack_main_archive(self): sectors = [0] remainders = [] buffer = 0 @@ -836,4 +836,4 @@ class ToolsTOR(ToolsTales): #Updates SCPK based on XMLs data - self.pack_Main_Archive() \ No newline at end of file + self.pack_main_archive() \ No newline at end of file diff --git a/pythonlib/games/ToolsTales.py b/pythonlib/games/ToolsTales.py index dae4651..0f48f17 100644 --- a/pythonlib/games/ToolsTales.py +++ b/pythonlib/games/ToolsTales.py @@ -995,7 +995,7 @@ class ToolsTales: - def extract_Menu_File(self, file_definition): + def extract_menu_file(self, file_definition): section_list = [] @@ -1042,7 +1042,7 @@ class ToolsTales: - def extract_All_Menu(self): + def extract_all_Menu(self): print("Extracting Menu Files") @@ -1055,7 +1055,7 @@ class ToolsTales: print("...{}".format(file_definition['File_Extract'])) - self.extract_Menu_File(file_definition) + self.extract_menu_file(file_definition)