Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Genrich <daniel.genrich@gmx.net>2013-03-06 02:58:13 +0400
committerDaniel Genrich <daniel.genrich@gmx.net>2013-03-06 02:58:13 +0400
commit15c524e416435621c20a82f64541a22dfa880fc3 (patch)
tree1583b89fb6994aaf569d9cdf22112df9d508c980
parentf840ac9801175cc16dcaceaa6168f262530a548e (diff)
Bugfix [#34519] deleted cache after duplicating an object with baked simulation
-rw-r--r--source/blender/modifiers/intern/MOD_cloth.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_cloth.c b/source/blender/modifiers/intern/MOD_cloth.c
index 54f3efcc84c..808dfbae810 100644
--- a/source/blender/modifiers/intern/MOD_cloth.c
+++ b/source/blender/modifiers/intern/MOD_cloth.c
@@ -155,7 +155,6 @@ static void copyData(ModifierData *md, ModifierData *target)
if (clmd->sim_parms->effector_weights)
tclmd->sim_parms->effector_weights = MEM_dupallocN(clmd->sim_parms->effector_weights);
tclmd->coll_parms = MEM_dupallocN(clmd->coll_parms);
- tclmd->point_cache = BKE_ptcache_copy_list(&tclmd->ptcaches, &clmd->ptcaches, FALSE);
tclmd->clothObject = NULL;
}