We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b887a0 commit 0a381c9Copy full SHA for 0a381c9
UnityPy/helpers/TypeTreeGenerator.py
@@ -38,6 +38,8 @@ def load_local_game(self, root_dir: str):
38
39
def load_local_dll_folder(self, dll_dir: str):
40
for f in os.listdir(dll_dir):
41
+ if not f.endswith(".dll"):
42
+ continue
43
fp = os.path.join(dll_dir, f)
44
with open(fp, "rb") as f:
45
data = f.read()
0 commit comments