diff options
Diffstat (limited to 'src/simulation/tools/Vac.cpp')
| -rw-r--r-- | src/simulation/tools/Vac.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simulation/tools/Vac.cpp b/src/simulation/tools/Vac.cpp index fbf7e85..86beb54 100644 --- a/src/simulation/tools/Vac.cpp +++ b/src/simulation/tools/Vac.cpp @@ -11,7 +11,7 @@ Tool_Vac::Tool_Vac() int Tool_Vac::Perform(Simulation * sim, Particle * cpart, int x, int y, float strength) { - sim->air->pv[y/CELL][x/CELL] -= 0.03f*strength; + sim->air->pv[y/CELL][x/CELL] -= strength*0.05f;; if(sim->air->pv[y/CELL][x/CELL] > 256.0f) sim->air->pv[y/CELL][x/CELL] = 256.0f; if(sim->air->pv[y/CELL][x/CELL] < -256.0f) |
