fixed addition of well at start
[physics.git] / src / effectManager.cpp
index c59decc..a75e5d8 100644 (file)
@@ -39,11 +39,10 @@ GravityWell* mouseWell;
 
 void effect::init()
 {
-    mouseWell = new GravityWell(input::mousePosition());
+    mouseWell = new GravityWell(Vector2(0,0));
 
     active_Effects.insert(new Screen());
     active_Effects.insert(new Gravity());
-    active_Effects.insert(mouseWell);
 }
 void effect::clean()
 {