Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
Kathund committed Feb 22, 2024
1 parent 0b5d44d commit f806612
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/structures/SkyBlock/SkyblockInventoryItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,34 +126,34 @@ class SkyblockInventoryItem {
this.attributes = data.tag.ExtraAttributes.attributes ?? {};
/**
* Hecatomb runs
* @type {object}
* @type {number}
*/
this.hecatomb = data.tag.ExtraAttributes.hecatomb_s_runs ?? 0;
/**
* Champion xp
* @type {object}
* @type {number}
*/
this.champion = data.tag.ExtraAttributes.champion_combat_xp ?? 0;
/**
* Cultivating
* @type {object}
* @type {number}
*/
this.cultivating = data.tag.ExtraAttributes.farmed_cultivating ?? 0;
/**
* Expertise Kills
* @type {object}
* @type {number}
*/
this.expertise = data.tag.ExtraAttributes.expertise_kills ?? 0;
/**
* Compact blocks Mined
* @type {object}
* @type {number}
*/
this.compact = data.tag.ExtraAttributes.compact_blocks ?? 0;
/**
* Armadillos Blocks Walked
* @type {object}
* @type {number}
*/
this.compact = data.tag.ExtraAttributes.blocks_walked ?? 0;
this.blocksWalked = data.tag.ExtraAttributes.blocks_walked ?? 0;
}
/**
* Item Name
Expand Down

0 comments on commit f806612

Please sign in to comment.