Fix issue with object patches not being copied with patcher.

This commit is contained in:
comfyanonymous 2023-11-07 22:15:15 -05:00
parent a527d0c795
commit fe40109b57

View File

@ -40,6 +40,7 @@ class ModelPatcher:
for k in self.patches: for k in self.patches:
n.patches[k] = self.patches[k][:] n.patches[k] = self.patches[k][:]
n.object_patches = self.object_patches.copy()
n.model_options = copy.deepcopy(self.model_options) n.model_options = copy.deepcopy(self.model_options)
n.model_keys = self.model_keys n.model_keys = self.model_keys
return n return n