Skip to content

Commit

Permalink
revert pull request #258 (e308dd7)
Browse files Browse the repository at this point in the history
Causes some issues with particle movement which was breaking some saves, and the previous commit still fixes these elements to move through gas wall instead of powder wall
  • Loading branch information
jacob1 committed Dec 18, 2015
1 parent 3226ce0 commit bfc19d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/simulation/elements/CO2.cpp
Expand Up @@ -17,7 +17,7 @@ Element_CO2::Element_CO2()
Gravity = 0.1f;
Diffusion = 1.0f;
HotAir = 0.000f * CFDS;
Falldown = 0;
Falldown = 1;

Flammable = 0;
Explosive = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/simulation/elements/FIRE.cpp
Expand Up @@ -17,7 +17,7 @@ Element_FIRE::Element_FIRE()
Gravity = -0.1f;
Diffusion = 0.00f;
HotAir = 0.001f * CFDS;
Falldown = 0;
Falldown = 1;

Flammable = 0;
Explosive = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/simulation/elements/SMKE.cpp
Expand Up @@ -17,7 +17,7 @@ Element_SMKE::Element_SMKE()
Gravity = -0.1f;
Diffusion = 0.00f;
HotAir = 0.001f * CFDS;
Falldown = 0;
Falldown = 1;

Flammable = 0;
Explosive = 0;
Expand Down

0 comments on commit bfc19d1

Please sign in to comment.