Files
manyplug-repo/a/index.js
synt-xerror eecef0be88 first commit
2026-04-14 21:15:05 -03:00

9 lines
239 B
JavaScript

import { hangmanActive } from "../forca/index.js";
export default async function ({ msg }) {
if (msg.body.trim().toLowerCase() !== "a") return;
if (msg.args.length > 1) return;
if (hangmanActive) return;
await msg.reply("B!");
}