From 6dab2b70c98970cc9987342564466f6bb3932e48 Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Fri, 6 Jun 2025 12:42:39 +0200 Subject: [PATCH] Correct typo --- Unity/Thing.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Unity/Thing.cs b/Unity/Thing.cs index ebacc63..c1597ab 100644 --- a/Unity/Thing.cs +++ b/Unity/Thing.cs @@ -128,7 +128,7 @@ namespace RoboidControl.Unity { this.gameObject.name = core.name; break; case ModelUrlMsg.Id: - Debug.Log("{this.id} Handle Model URL"); + Debug.Log($"{this.core.id} Handle Model URL"); string extension = core.modelUrl[core.modelUrl.LastIndexOf(".")..]; if (extension == ".jpg" || extension == ".png") StartCoroutine(LoadJPG());