Add using game base state as base for fixed design sets.

This commit is contained in:
Ottermandias 2023-07-19 16:43:54 +02:00
parent 8f9beed6f8
commit c909510edc
11 changed files with 69 additions and 18 deletions

View file

@ -150,7 +150,7 @@ public class CommandService : IDisposable
return false;
if (_stateManager.TryGetValue(identifier, out var state))
_stateManager.ResetState(state);
_stateManager.ResetState(state, StateChanged.Source.Manual);
return true;
}