Fix error assigning the fluid particle flag to the wrong member

This commit is contained in:
Campbell Barton 2019-12-18 12:56:39 +11:00
parent 0019216722
commit 31b9ddd876
1 changed files with 1 additions and 1 deletions

View File

@ -4287,7 +4287,7 @@ void BKE_fluid_particles_set(FluidDomainSettings *settings, int value, bool clea
settings->particle_type &= ~value;
}
else {
settings->border_collisions |= value;
settings->particle_type |= value;
}
}