We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e395ae9 commit f68f0d2Copy full SHA for f68f0d2
1 file changed
HintServiceMeow/Core/Utilities/PlayerDisplay.cs
@@ -306,6 +306,9 @@ public void AddHint(IEnumerable<AbstractHint>? hints)
306
307
foreach (AbstractHint hint in hints)
308
{
309
+ if (hint is null)
310
+ continue;
311
+
312
InternalAddHint(groupName, hint);
313
}
314
@@ -322,6 +325,9 @@ public void AddHint(params AbstractHint[]? hints)
322
325
string groupName = Assembly.GetCallingAssembly().FullName;
323
326
324
327
328
329
330
331
332
333
0 commit comments