From e8a893f0e6f10450e8399ef46fbc4f589819790a Mon Sep 17 00:00:00 2001 From: Cole Crouter Date: Sat, 16 Nov 2024 00:07:11 -0600 Subject: [PATCH] Fix #34 fishing and mining skills swapped --- src/lib/proxies/Skills.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/proxies/Skills.ts b/src/lib/proxies/Skills.ts index 2d57c4d..25f7bc4 100644 --- a/src/lib/proxies/Skills.ts +++ b/src/lib/proxies/Skills.ts @@ -16,11 +16,11 @@ export class Skills { } get mining() { - return this.raw[1] ?? 0; + return this.raw[3] ?? 0; } set mining(value) { - this.raw[1] = value; + this.raw[3] = value; } get foraging() { @@ -32,11 +32,11 @@ export class Skills { } get fishing() { - return this.raw[3] ?? 0; + return this.raw[1] ?? 0; } set fishing(value) { - this.raw[3] = value; + this.raw[1] = value; } get combat() {