added modules to neonserv.example.conf and added protected as a module setting
[NeonServV5.git] / neonserv.example.conf
index 334d7308e15aa3924dbbd340e04fd349f5db6548..5be3085bb2daa1d7b2c69918de22562b24f4f569 100644 (file)
     */
     "loglevel" = 3;
 };
+"modules" {
+    "libglobalcmd" {
+        "enabled" = 1;
+        "protected" = 1; //may not be unloaded
+    };
+    "libDummyServ" {
+        "enabled" = 1;
+        "protected" = 0;
+    };
+    "libfuncmds" {
+        "enabled" = 1;
+        "protected" = 0;
+    };
+    "libNeonHelp" {
+        "enabled" = 1;
+        "protected" = 0;
+    };
+    "libNeonServ" {
+        "enabled" = 1;
+        "protected" = 0;
+    };
+    "libNeonSpam" {
+        "enabled" = 1;
+        "protected" = 0;
+    };
+};
+