summaryrefslogtreecommitdiff
path: root/src/simulation/tools/AirTool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/simulation/tools/AirTool.cpp')
-rw-r--r--src/simulation/tools/AirTool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simulation/tools/AirTool.cpp b/src/simulation/tools/AirTool.cpp
index 4e7ebde..5d7f405 100644
--- a/src/simulation/tools/AirTool.cpp
+++ b/src/simulation/tools/AirTool.cpp
@@ -11,7 +11,7 @@ Tool_Air::Tool_Air()
int Tool_Air::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)