Fix InRelationSingleton error message

pull/4/head
cosmonaut 2023-02-09 15:15:41 -08:00
parent 02ccc3d1a5
commit f534ff145e
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ namespace MoonTools.ECS
#if DEBUG
if (!inRelations.ContainsKey(entityID) || inRelations[entityID].Count == 0)
{
throw new KeyNotFoundException("No out relations to this entity!");
throw new KeyNotFoundException("No in relations to this entity!");
}
#endif