Better default brush

This commit is contained in:
Devine Lu Linvega
2017-01-02 17:36:22 -07:00
parent bf2cc0cda3
commit 550b31e8b7
2 changed files with 3 additions and 3 deletions

View File

@@ -22,8 +22,6 @@ function Pointer(offset = new Position(), color = new Color('000000'))
if(!this.position_prev){this.position_prev = this.position(); }
var position = this.position();
if(position.distance_to(this.position_prev) < 2){ return; } // Quickfix against stairs
this.distance += position.distance_to(this.position_prev);