From 8efbc9cc6e3993e35b853fccb1a590a3a3eb03c8 Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Sat, 23 Aug 2025 15:12:08 +0200 Subject: [PATCH] Remove redundant comment for stat initialization in GameState constructor --- Scripts/Core/GameState.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Scripts/Core/GameState.cs b/Scripts/Core/GameState.cs index 137d4b2..45c1697 100644 --- a/Scripts/Core/GameState.cs +++ b/Scripts/Core/GameState.cs @@ -13,7 +13,6 @@ public class GameState public GameState() { - // Initialize all stats with their default values foreach (Stat stat in Enum.GetValues(typeof(Stat))) { _stats[stat] = new StatData();