internal static void InjectStorageAmmo(SiloStorage.StorageType type, HashSet <Identifiable.Id> idSet)
 {
     if (!STORAGE_AMMO.ContainsKey(type))
     {
         return;
     }
     idSet.UnionWith(STORAGE_AMMO[type]);
 }
 internal static bool IsStorageTypeRegistered(SiloStorage.StorageType type) => !VANILLA_STORAGE_TYPE.Contains(type) && STORAGE_AMMO.ContainsKey(type);