We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dfcb92 commit 90bf270Copy full SHA for 90bf270
addons/source-python/packages/source-python/core/dumps.py
@@ -24,8 +24,6 @@
24
from paths import LOG_PATH
25
# Stringtables
26
from stringtables import string_tables
27
-# Weapons
28
-from weapons.scripts import weapon_scripts
29
30
31
# =============================================================================
@@ -158,6 +156,10 @@ def dump_string_tables(filename):
158
156
159
157
def dump_weapon_scripts(filename):
160
"""Dump all WeaponInfo instances to the given file name."""
+ # Import weapon_scripts
+ # This was moved here due to issues with the bms branch
161
+ from weapons.scripts import weapon_scripts
162
+
163
# Open/close the file
164
with LOG_PATH.joinpath(filename + '.txt').open('w') as open_file:
165
0 commit comments