Skip to content

Commit dc41559

Browse files
committed
loader: Detect HL1MP and SDK2013(2025) mods as HL2:DM for now
1 parent d6ed444 commit dc41559

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

loader/loader.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,12 @@ mm_DetermineBackendS1(QueryValveInterface engineFactory, QueryValveInterface ser
389389
{
390390
return MMBackend_Mock;
391391
}
392+
else if (serverFactory("ServerGameClients005", NULL) != nullptr)
393+
{
394+
// 2025 version of SDK 2013, or maybe hl1mp, or anything else shaped like those.
395+
// We may later make a separate SDK for this branch. For now, they match, we'll hack it
396+
return MMBackend_HL2DM;
397+
}
392398
else
393399
{
394400
return MMBackend_SDK2013;

0 commit comments

Comments
 (0)