fix: restore salad

This commit is contained in:
2025-11-04 23:44:33 +01:00
parent 48e871f9f3
commit a1cb638e4b
+7 -1
View File
@@ -345,8 +345,14 @@ const app = createApp({
this.config.seed
);
const table = generator.generate();
if (this.config.endWithAll) {
table[table.length - 1][1] = "🥗 SALAD 🥗";
}
this.table.splice(0, this.table.length);
this.table.push(...generator.generate());
this.table.push(...table);
},
},
});