diff options
author | Devine Lu Linvega <[email protected]> | 2018-11-28 16:32:24 +1200 |
---|---|---|
committer | Devine Lu Linvega <[email protected]> | 2018-11-28 16:32:24 +1200 |
commit | 5478a3f731077ff4b0138bdde8d7ae27d41ee00a (patch) | |
tree | 9b76bd3c2404b1d414f91a011cb6fcb29f092de0 | |
parent | d6ac36f691d9e12e7aed1774065dbd74ccb20542 (diff) | |
download | Orca-5478a3f731077ff4b0138bdde8d7ae27d41ee00a.tar.gz Orca-5478a3f731077ff4b0138bdde8d7ae27d41ee00a.zip |
Un-Neutered A
-rw-r--r-- | desktop/core/orca.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/core/orca.js b/desktop/core/orca.js index 7e0d4a0..ae54fef 100644 --- a/desktop/core/orca.js +++ b/desktop/core/orca.js @@ -63,7 +63,7 @@ function Orca (library = {}) { this.cast = function (g, x, y) { if (g === '.') { return } if (!library[g.toLowerCase()]) { return } - const passive = g === g.toUpperCase() && this.valueOf(g) > 10 + const passive = g === g.toUpperCase() && this.valueOf(g) > 9 return new library[g.toLowerCase()](this, x, y, passive) } |