* fix #1593

* fix #1236

* fix #1561
This commit is contained in:
Red
2025-07-31 23:44:45 +03:00
committed by GitHub
parent 25823cbe06
commit f17779812f
5 changed files with 45 additions and 38 deletions

View File

@@ -57,7 +57,7 @@ public sealed partial class CP14KeyholeGenerationSystem : EntitySystem
private List<int> GetKeyLockData(ProtoId<CP14LockTypePrototype> category)
{
if (_roundKeyData.ContainsKey(category))
return _roundKeyData[category];
return new List<int>(_roundKeyData[category]);
var newData = GenerateNewUniqueLockData(category);
_roundKeyData[category] = newData;