Skip to content

Commit 18279e8

Browse files
committed
loader: Detect HL1MP and SDK2013(2025) mods as HL2:DM for now
(cherry picked from commit dc41559)
1 parent 1221f7f commit 18279e8

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
@@ -441,6 +441,12 @@ mm_DetermineBackend(QueryValveInterface engineFactory, QueryValveInterface serve
441441
{
442442
return MMBackend_Mock;
443443
}
444+
else if (serverFactory("ServerGameClients005", NULL) != nullptr)
445+
{
446+
// 2025 version of SDK 2013, or maybe hl1mp, or anything else shaped like those.
447+
// We may later make a separate SDK for this branch. For now, they match, we'll hack it
448+
return MMBackend_HL2DM;
449+
}
444450
else
445451
{
446452
return MMBackend_SDK2013;

0 commit comments

Comments
 (0)