diff options
Diffstat (limited to 'src/simulation/tools/NGrv.cpp')
| -rw-r--r-- | src/simulation/tools/NGrv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simulation/tools/NGrv.cpp b/src/simulation/tools/NGrv.cpp index 65530c5..89af1ea 100644 --- a/src/simulation/tools/NGrv.cpp +++ b/src/simulation/tools/NGrv.cpp @@ -11,7 +11,7 @@ Tool_NGrv::Tool_NGrv() int Tool_NGrv::Perform(Simulation * sim, Particle * cpart, int x, int y, float strength) { - sim->gravmap[((y/CELL)*(XRES/CELL))+(x/CELL)] -= 0.03f*strength; + sim->gravmap[((y/CELL)*(XRES/CELL))+(x/CELL)] = strength*-5.0f; return 1; } |
