Browse Source

Merge branch 'master' of https://github.com/bbepis/BepInEx into config-wrapper

Usagirei 7 years ago
parent
commit
b8196d0892
1 changed files with 1 additions and 1 deletions
  1. 1 1
      BepInEx/Config.cs

+ 1 - 1
BepInEx/Config.cs

@@ -81,7 +81,7 @@ namespace BepInEx
             {
                 string line = rawLine.Trim();
 
-                bool commentIndex = line.StartsWith("//");
+                bool commentIndex = line.StartsWith(";") || line.StartsWith("#");
 
                 if (commentIndex) //trim comment
                     continue;