Remove spam logging

This commit is contained in:
memetrollsXD 2022-08-02 16:17:24 +02:00
parent a07f7d7087
commit 67d43bc0a1
No known key found for this signature in database
GPG Key ID: 105C2F3417AC32CD

View File

@ -34,16 +34,18 @@ export default async function handle(command: Command) {
}
case "giveall": {
for (const id in AvatarExcelTable) {
Avatar.create(uid, parseInt(id)).then(() => c.log(`All avatars added to ${uid}`));
await Avatar.create(uid, parseInt(id));
}
c.log(`All avatars added to ${uid}`);
break;
}
case "removeall": {
for (const id in AvatarExcelTable) {
if (!(id == '1001')) {
Avatar.remove(uid, parseInt(id)).then(() => c.log(`All avatars removed from ${uid}`));
await Avatar.remove(uid, parseInt(id));
}
}
c.log(`All avatars removed from ${uid}`);
break;
}
}