updated AMbuildscript and extension header so css fixes can be build again

This commit is contained in:
2025-01-24 17:51:37 +00:00
parent 3168c52234
commit 4fc43bc272
2 changed files with 6 additions and 3 deletions
+3 -3
View File
@@ -84,7 +84,7 @@ class ExtensionConfig(object):
if builder.options.sm_path:
self.sm_root = builder.options.sm_path
else:
self.sm_root = ResolveEnvPath('SOURCEMOD18', 'sourcemod-1.8')
self.sm_root = ResolveEnvPath('SOURCEMOD', 'sourcemod-1.11')
if not self.sm_root:
self.sm_root = ResolveEnvPath('SOURCEMOD', 'sourcemod')
if not self.sm_root:
@@ -97,7 +97,7 @@ class ExtensionConfig(object):
if builder.options.mms_path:
self.mms_root = builder.options.mms_path
else:
self.mms_root = ResolveEnvPath('MMSOURCE110', 'mmsource-1.10')
self.mms_root = ResolveEnvPath('MMSOURCE', 'mmsource-1.11')
if not self.mms_root:
self.mms_root = ResolveEnvPath('MMSOURCE', 'metamod-source')
if not self.mms_root:
@@ -426,4 +426,4 @@ if builder.backend == 'amb2':
'PackageScript',
]
builder.RunBuildScripts(BuildScripts, { 'Extension': Extension})
builder.RunBuildScripts(BuildScripts, { 'Extension': Extension})