From e6ef9ad31f53ab037322aad55cb0305395727df1 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Sat, 21 Mar 2015 08:43:18 -0400 Subject: [PATCH] Fix game detection on Nuclear Dawn (bug 6327). --- loader/loader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader/loader.cpp b/loader/loader.cpp index 6833c9d..dcd1b79 100644 --- a/loader/loader.cpp +++ b/loader/loader.cpp @@ -307,7 +307,7 @@ mm_DetermineBackend(QueryValveInterface engineFactory, QueryValveInterface serve } else if (engineFactory("VPrecacheSystem001", NULL) != NULL) { - if (engineFactory("ServerGameTags002", NULL) != NULL) + if (gameFactory("ServerGameTags002", NULL) != NULL) { return MMBackend_NuclearDawn; }