A Deno-powered backend service for Plants vs. Zombies: MODDED. [Read-only GitHub mirror] docs.pvzm.net
express typescript expressjs plant deno jspvz pvzm game online backend plants-vs-zombies zombie javascript plants modded vs plantsvszombies openapi pvz noads
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Format "featured system" Original commit: https://github.com/ROBlNET13/pvzm-backend/commit/2650c47d47f6990cca5dfdbe6fc27001d277c230

Co-authored-by: ClaytonTDM <clay@clay.rip>

+1 -3
+1 -3
modules/routes/admin.ts
··· 147 147 148 148 updateParams.push(levelId); 149 149 150 - dbCtx.db 151 - .prepare(`UPDATE levels SET ${updates.join(", ")} WHERE id = ?`) 152 - .run(...updateParams); 150 + dbCtx.db.prepare(`UPDATE levels SET ${updates.join(", ")} WHERE id = ?`).run(...updateParams); 153 151 154 152 const updatedLevel = dbCtx.db.prepare("SELECT * FROM levels WHERE id = ?").get(levelId); 155 153