Beta-Seite hinzugefügt
This commit is contained in:
@@ -24,7 +24,7 @@ export class FourWordsLevel extends Level {
|
||||
leafsWords[3] = Level._createLeafsForWord(this.words[3], this.templateContainer.copyLeafTemplate());
|
||||
|
||||
let rootSegment = new RowSegment(this.templateContainer.copyRowTemplate());
|
||||
for (let i = 0, n = this.wordLength / 4; i < n; i++) {
|
||||
for (let i = 0; i < this.wordLength / 4; i++) {
|
||||
|
||||
let parents = [];
|
||||
parents[0] = new ParentSegment(this.templateContainer.copyParentTemplate());
|
||||
|
||||
@@ -28,7 +28,7 @@ export class SixWordsRowLevel extends Level {
|
||||
leafsWords[5] = Level._createLeafsForWord(this.words[5], this.templateContainer.copyLeafTemplate());
|
||||
|
||||
let rootSegment = new RowSegment(this.templateContainer.copyRowTemplate());
|
||||
for (let i = 0, n = this.wordLength / 4; i < n; i++) {
|
||||
for (let i = 0; i < this.wordLength / 4; i++) {
|
||||
|
||||
let parents = [];
|
||||
parents[0] = new ParentSegment(this.templateContainer.copyParentTemplate());
|
||||
|
||||
Reference in New Issue
Block a user