We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d02dbf commit 379970bCopy full SHA for 379970b
src/vinifera/vinifera_functions.cpp
@@ -526,6 +526,7 @@ bool Vinifera_Startup()
526
return false;
527
}
528
529
+#if !defined(TS_CLIENT)
530
/**
531
* Initialise the CnCNet4 system.
532
*/
@@ -541,6 +542,13 @@ bool Vinifera_Startup()
541
542
CnCNet4::Shutdown();
543
CnCNet4::IsEnabled = false;
544
545
+#else
546
+ /**
547
+ * Client builds can only use CnCNet5.
548
+ */
549
+ CnCNet4::IsEnabled = false;
550
+ //CnCNet5::IsActive = true; // Enable when new Client system is implemented.
551
+#endif
552
553
return true;
554
0 commit comments