Skip to content

Commit 3f072fc

Browse files
author
Baptiste SUZON
committed
fix: typo in GetUtility
1 parent 470886f commit 3f072fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Runtime/UtilitySystem.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ public Utility GetHighestUtility()
6868
return max;
6969
}
7070

71-
public Utility GetUtilty(string key)
71+
public Utility GetUtility(string key)
7272
{
7373
if (_outputs.ContainsKey(key))
7474
return _outputs[key];
7575
else
7676
{
77-
Debug.Log($"UtilitySystem does not contain {key}");
77+
Debug.Log($"UtilitySystem does not contain the utility {key}");
7878
return null;
7979
}
8080
}
@@ -113,7 +113,7 @@ public Stat GetStat(string key)
113113
return _inputs[key];
114114
else
115115
{
116-
Debug.Log($"UtilitySystem does not contain {key}");
116+
Debug.Log($"UtilitySystem does not contain the stat {key}");
117117
return null;
118118
}
119119
}

0 commit comments

Comments
 (0)