This commit is contained in:
JohnCorby 2023-08-23 14:51:56 -07:00
parent cc6286fc92
commit 0fc0715048

View File

@ -14,7 +14,7 @@ public static class AddonDataManager
if (!_handlers.TryGetValue(hash, out var handler)) if (!_handlers.TryGetValue(hash, out var handler))
{ {
DebugLog.DebugWrite($"unknown addon message type with hash {hash}", MessageType.Error); DebugLog.DebugWrite($"unknown addon message type with hash {hash}", MessageType.Error);
return; return; // test
} }
handler(from, data); handler(from, data);
} }