From e1ce830b195c184a59204b4b2e925eb1baa4262a Mon Sep 17 00:00:00 2001 From: Patrick_Pluto Date: Sun, 16 Jun 2024 22:28:13 +0200 Subject: [PATCH] Minor issue with the ingame display fixed, again, not sure how I missed THAT. --- scripts/mapscript.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/mapscript.gd b/scripts/mapscript.gd index e88a2c5..5bc567e 100644 --- a/scripts/mapscript.gd +++ b/scripts/mapscript.gd @@ -22,8 +22,8 @@ func stats(): get_node(objectName).stop() $"../back".disabled = false $"../back".visible = true - $"../characterViewer/ScrollContainer/VBoxContainer".get_child(1).text = str(playerIndex-1) - $"../characterViewer/ScrollContainer/VBoxContainer".get_child(1).editable = false + $"../characterViewer/ScrollContainer/VBoxContainer".get_child(0).text = str(playerIndex-1) + $"../characterViewer/ScrollContainer/VBoxContainer".get_child(0).editable = false $"../characterViewer"._on_button_pressed() func restart():