also do GetCustomSignalName

even though there is no NRE there could be in future
This commit is contained in:
Noah Pilarski 2024-06-14 23:41:25 -04:00
parent d3f8c55f31
commit 3694723ee8

View File

@ -141,6 +141,7 @@ namespace NewHorizons.Builder.Props.Audio
public static string GetCustomSignalName(SignalName signalName)
{
if (_customSignalNames == null) return string.Empty;
_customSignalNames.TryGetValue(signalName, out string name);
return name;
}