summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-02-01 13:24:47 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-02-01 13:24:47 +0100
commitc461d3880fe6e0561dafd79054185e25d36a0e34 (patch)
treebc3ef73ad620d46b8403f08b152cc3296c215fd0
parent155aac11b55c6beff8543f4c41187511a79ad924 (diff)
parent086ce855a87167b30edfb39cc3b3f6bce36e4444 (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.cs2
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();
}
}