diff --git a/encompass-cs/ComponentManager.cs b/encompass-cs/ComponentManager.cs index 2e908db..b18107a 100644 --- a/encompass-cs/ComponentManager.cs +++ b/encompass-cs/ComponentManager.cs @@ -150,7 +150,7 @@ namespace Encompass { if (pendingUpdates.ContainsKey(componentID)) { - throw new RepeatUpdateComponentException("Component with ID {0} was updated multiple times this frame", componentID); + throw new RepeatUpdateComponentException("Component {0} with ID {1} was updated multiple times this frame", typeof(TComponent).Name, componentID); } pendingUpdates.Add(componentID, newComponentValue);