2.2.0 : ATT/DEG/ARM physiques et magiques partout (monstres + équipement), suppression de troll par l'admin

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
perco
2026-06-12 15:55:14 +02:00
co-authored by Claude Fable 5
parent 646a147774
commit a1fe09e6b4
9 changed files with 212 additions and 82 deletions
+8
View File
@@ -230,6 +230,14 @@ function handleMP(req, res, url) {
return sendJSON(res, 200, tuning);
});
}
if (req.method === "POST" && url.pathname === "/api/mp/admin/kick") {
return readBody(req, res, body => {
const r = mp.adminKickTroll(WORLD, body.id);
if (r.error) return sendJSON(res, 404, r);
worldDirty = true;
return sendJSON(res, 200, r);
});
}
if (req.method === "POST" && url.pathname === "/api/mp/admin/reset") {
mp.adminResetWorld(WORLD);
worldDirty = true;