From d884e3ef072a8adc7d3b0832b89d28c31f677112 Mon Sep 17 00:00:00 2001 From: Kitzu <47696524+KitzuGG@users.noreply.github.com> Date: Tue, 28 May 2024 21:20:26 +0200 Subject: [PATCH] Correction on usage of Dictionaries in C# as it should be 'Godot.Collections.Dictionary<>' --- tutorials/scripting/resources.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/scripting/resources.rst b/tutorials/scripting/resources.rst index 2829994cd..973b16c89 100644 --- a/tutorials/scripting/resources.rst +++ b/tutorials/scripting/resources.rst @@ -337,7 +337,7 @@ Now, select the :ref:`CharacterBody3D ` node which we nam [GlobalClass] public partial class BotStatsTable : Resource { - private Godot.Dictionary _stats = new Godot.Dictionary(); + private Godot.Collections.Dictionary _stats = new Godot.Collections.Dictionary(); public BotStatsTable() {