remove console.log for new chest

This commit is contained in:
CounterFire2023 2024-04-29 13:46:42 +08:00
parent 4b98144c23
commit 838f68b578

View File

@ -31,9 +31,9 @@ export enum ChestStatusEnum {
timeStr = randomStr + timeStr.slice(1) timeStr = randomStr + timeStr.slice(1)
} }
let shortId = timeStr + this.id.slice(-6) let shortId = timeStr + this.id.slice(-6)
console.log(shortId) // console.log(shortId)
this.shareCode = convert({ numStr: shortId, base: 16, to: 52, alphabet: BASE52_ALPHABET }) this.shareCode = convert({ numStr: shortId, base: 16, to: 52, alphabet: BASE52_ALPHABET })
console.log(this.id, this.shareCode) // console.log(this.id, this.shareCode)
} }
}) })
export class ActivityChestClass extends BaseModule { export class ActivityChestClass extends BaseModule {