diff options
author | Devine Lu Linvega <[email protected]> | 2019-04-02 15:16:45 +0900 |
---|---|---|
committer | Devine Lu Linvega <[email protected]> | 2019-04-02 15:16:45 +0900 |
commit | aea942eae87741bd1bcf8af3fda417686268ee69 (patch) | |
tree | 5f6fdaa83e3f2679a0916f4f08a273af7347f2ba | |
parent | 0305e534455f810514aef92c31b3b5929de06cc0 (diff) | |
download | Orca-aea942eae87741bd1bcf8af3fda417686268ee69.tar.gz Orca-aea942eae87741bd1bcf8af3fda417686268ee69.zip |
L Fix
-rw-r--r-- | desktop/core/library/l.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/core/library/l.js b/desktop/core/library/l.js index ad9d14a..ff0f827 100644 --- a/desktop/core/library/l.js +++ b/desktop/core/library/l.js @@ -18,7 +18,7 @@ function OperatorL (orca, x, y, passive) { } this.run = function () { - if (!this.len || this.len < 1) { return } + this.len = this.listen(this.ports.haste.len, true) const a = [] for (let x = 1; x <= this.len; x++) { a.push(orca.glyphAt(this.x + x, this.y)) |