diff options
author | Holden Rohrer <holden.rohrer@gmail.com> | 2019-12-18 23:07:39 -0500 |
---|---|---|
committer | Holden Rohrer <holden.rohrer@gmail.com> | 2019-12-18 23:07:39 -0500 |
commit | a8e1bb2c12467b358422d53f4bb0563dae01fb96 (patch) | |
tree | 313149e69aebcef6e37ffc33232e626304a0a13f | |
parent | 173810ea2a91a92638dff7e36f4ec5aa6f70607d (diff) |
bugfixes in space
-rw-r--r-- | space.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ function Space(){ // CLASS if (conform && incl.includes(line)){ for (let i=0; i<16; i++) self.data[curline].push(' '); } else { - self.data[curline].push(cont[read].split('')); + Array.prototype.push.apply(self.data[curline],cont[read].split('')); read++; } } |