瀏覽代碼

Merge pull request #72434 from Treer/master

Qualify Console's namespace to avoid mixup with plugin's objects
Rémi Verschelde 2 年之前
父節點
當前提交
c461d3880f

+ 1 - 1
modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators/GodotPluginsInitializerGenerator.cs

@@ -48,7 +48,7 @@ namespace GodotPlugins.Game
             }
             catch (Exception e)
             {
-                Console.Error.WriteLine(e);
+                global::System.Console.Error.WriteLine(e);
                 return false.ToGodotBool();
             }
         }