Skip to content

Commit 3f05d1c

Browse files
hotfix: add missing file interface to modpack scripts
1 parent fe7dc68 commit 3f05d1c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_modpacks/resources/cswt/cstp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def replCharacterDartIcons(locale, brresDir, modpackDir):
128128

129129
MODID = __name__
130130

131-
class Mod(pycsmm.CSMMMod, pycsmm.GeneralInterface, pycsmm.ArcFileInterface, pycsmm.UiMessageInterface):
131+
class Mod(pycsmm.CSMMMod, pycsmm.GeneralInterface, pycsmm.ArcFileInterface, pycsmm.BrresFileInterface, pycsmm.UiMessageInterface):
132132
def __init__(self):
133133
pycsmm.CSMMMod.__init__(self)
134134
pycsmm.GeneralInterface.__init__(self)

_modpacks/resources/cswt/cswt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def replCharacterDartIcons(locale, brresDir, modpackDir):
130130

131131
MODID = __name__
132132

133-
class Mod(pycsmm.CSMMMod, pycsmm.GeneralInterface, pycsmm.ArcFileInterface, pycsmm.UiMessageInterface):
133+
class Mod(pycsmm.CSMMMod, pycsmm.GeneralInterface, pycsmm.ArcFileInterface, pycsmm.BrresFileInterface, pycsmm.UiMessageInterface):
134134
def __init__(self):
135135
pycsmm.CSMMMod.__init__(self)
136136
pycsmm.GeneralInterface.__init__(self)

0 commit comments

Comments
 (0)