We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b70cdf commit a7b1e49Copy full SHA for a7b1e49
src/internal/util/tetris.ts
@@ -18,6 +18,7 @@ export class Tetris<T extends any> {
18
}
19
for (let column = 0; column < this.columns; column++) {
20
if (this._hasNewIn(column)) {
21
+ delete this.arrays[column][this.lastEmissionIndices[column]];
22
this.lastEmissionIndices[column] += 1;
23
24
next.push(this.arrays[column][this.lastEmissionIndices[column]]);
0 commit comments