diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-01 13:24:47 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-01 13:24:47 +0100 |
commit | c461d3880fe6e0561dafd79054185e25d36a0e34 (patch) | |
tree | bc3ef73ad620d46b8403f08b152cc3296c215fd0 | |
parent | 155aac11b55c6beff8543f4c41187511a79ad924 (diff) | |
parent | 086ce855a87167b30edfb39cc3b3f6bce36e4444 (diff) |
Merge pull request #72434 from Treer/master
Qualify Console's namespace to avoid mixup with plugin's objects
-rw-r--r-- | modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators/GodotPluginsInitializerGenerator.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators/GodotPluginsInitializerGenerator.cs b/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators/GodotPluginsInitializerGenerator.cs index 813bdf1e9f..47a4516948 100644 --- a/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators/GodotPluginsInitializerGenerator.cs +++ b/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(); } } |