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:
authorJanne Karhu <jhkarh@gmail.com>2008-04-01 00:54:00 +0400
committerJanne Karhu <jhkarh@gmail.com>2008-04-01 00:54:00 +0400
commit0ce8fe1ec48df4d632eeb128fb07d11a0fe2a5c2 (patch)
treea5472f3f308cd8b61c89091009a5df424553f825 /source/blender/blenkernel
parent0efe0aa27b6159075b7cbb4bddd8ad1502952eaf (diff)
Fix for bug: [#8818] Particle reflecting strange from a simple plane
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/particle_system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/particle_system.c b/source/blender/blenkernel/intern/particle_system.c
index b48bfc4f2b8..e8b85b7c6eb 100644
--- a/source/blender/blenkernel/intern/particle_system.c
+++ b/source/blender/blenkernel/intern/particle_system.c
@@ -3183,7 +3183,7 @@ static void deflect_particle(Object *pob, ParticleSystemModifierData *psmd, Part
global=0;
}
- if(ec->vert_cos==0){
+ if(global==1){
/* get global coordinates back */
VECCOPY(co1,t_co1);
VECCOPY(co2,t_co2);