Skip to content

Commit

Permalink
Fixed Typescript errors.
Browse files Browse the repository at this point in the history
 Changes to be committed:
	modified:   ui/core/components/suggest_gems_action.ts
  • Loading branch information
NerdEgghead committed Dec 6, 2023
1 parent ebadd49 commit 714640d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ui/core/components/suggest_gems_action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ abstract class GemOptimizer {
protected readonly gemPriorityByColor: Record<GemColor, Array<GemCapsData>>;
abstract metaGemID: number;
static allGemColors: Array<GemColor> = [GemColor.GemColorRed, GemColor.GemColorYellow, GemColor.GemColorBlue];
epWeights: Stats;
useJcGems: boolean;
isBlacksmithing: boolean;
numSocketedJcGems: number;
epWeights!: Stats;
useJcGems!: boolean;
isBlacksmithing!: boolean;
numSocketedJcGems!: number;
jcUpgradePriority: Array<GemCapsData>;

static jcUpgradesById: Record<number, number> = {
Expand Down

0 comments on commit 714640d

Please sign in to comment.