1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Merge pull request #36730 from raulsntos/print-null-check

Fix missing null check in Mono Binding of GD.print
This commit is contained in:
Rémi Verschelde
2020-03-02 19:32:54 +01:00
committed by GitHub

View File

@@ -83,7 +83,7 @@ namespace Godot
public static void Print(params object[] what)
{
godot_icall_GD_print(Array.ConvertAll(what, x => x.ToString()));
godot_icall_GD_print(Array.ConvertAll(what, x => x?.ToString()));
}
public static void PrintStack()