We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 470886f commit 3f072fcCopy full SHA for 3f072fc
Runtime/UtilitySystem.cs
@@ -68,13 +68,13 @@ public Utility GetHighestUtility()
68
return max;
69
}
70
71
- public Utility GetUtilty(string key)
+ public Utility GetUtility(string key)
72
{
73
if (_outputs.ContainsKey(key))
74
return _outputs[key];
75
else
76
77
- Debug.Log($"UtilitySystem does not contain {key}");
+ Debug.Log($"UtilitySystem does not contain the utility {key}");
78
return null;
79
80
@@ -113,7 +113,7 @@ public Stat GetStat(string key)
113
return _inputs[key];
114
115
116
+ Debug.Log($"UtilitySystem does not contain the stat {key}");
117
118
119
0 commit comments