Dirty command fix (#8534)

This commit is contained in:
wrexbe 2022-05-30 00:10:57 -07:00 committed by GitHub
parent 219609d358
commit e649dcea14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ public sealed class DirtyCommand : IConsoleCommand
{
foreach (var component in manager.GetComponents(entityUid))
{
manager.Dirty(component);
manager.Dirty((Component)component);
}
}
}