Skip to content

Commit 9223bb9

Browse files
committed
feat(redeem): Add more chest type mappings (Silver, Gold, Modron)
1 parent a3dd0ac commit 9223bb9

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/bot/commands/redeem.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,9 @@ function getCodeStatusName(status: any): string {
232232

233233
function getChestTypeName(chestTypeId: number): string {
234234
const chestTypes: { [key: number]: string } = {
235+
1: 'Silver Chest',
236+
2: 'Gold Chest',
237+
230: 'Modron Chest',
235238
282: 'Electrum Chest',
236239
};
237240
return chestTypes[chestTypeId] || `Chest ${chestTypeId}`;

0 commit comments

Comments
 (0)