From 5beba7992d0bf03e354669d9e6cb8df821103187 Mon Sep 17 00:00:00 2001 From: xangelo Date: Wed, 6 Sep 2023 13:32:45 -0400 Subject: [PATCH 1/2] fix: reduce specials to 10% --- src/shared/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/constants.ts b/src/shared/constants.ts index c95c80d..4cda940 100644 --- a/src/shared/constants.ts +++ b/src/shared/constants.ts @@ -2,4 +2,4 @@ export const FIGHT_ATTACK_DELAY = 1500; export const STEP_DELAY = 2000; export const ALERT_DISPLAY_LENGTH = 3000; // this is displayed as a percentage out of 100 -export const CHANCE_TO_FIGHT_SPECIAL = 100; +export const CHANCE_TO_FIGHT_SPECIAL = 10; -- 2.25.1 From 4f6cf47abec65d784ddcee626e912ce6da508610 Mon Sep 17 00:00:00 2001 From: xangelo Date: Wed, 6 Sep 2023 13:32:54 -0400 Subject: [PATCH 2/2] chore(release): 0.3.5 --- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e3b88a..81ae3c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.3.5](https://git.xangelo.ca/?p=risinglegends.git;a=commitdiff;h=v0.3.5;hp=v0.3.4;ds=sidebyside) (2023-09-06) + + +### Bug Fixes + +* reduce specials to 10% 5beba79 + ### [0.3.4](https://git.xangelo.ca/?p=risinglegends.git;a=commitdiff;h=v0.3.4;hp=v0.3.3;ds=sidebyside) (2023-09-06) diff --git a/package-lock.json b/package-lock.json index e59b806..ac9b526 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rising-legends", - "version": "0.3.4", + "version": "0.3.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "rising-legends", - "version": "0.3.4", + "version": "0.3.5", "dependencies": { "@honeycombio/opentelemetry-node": "^0.4.0", "@opentelemetry/auto-instrumentations-node": "^0.37.0", diff --git a/package.json b/package.json index 5416f4b..891588d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "rising-legends", "private": true, - "version": "0.3.4", + "version": "0.3.5", "scripts": { "up": "npx prisma migrate dev --name \"init\"", "start": "pm2 start dist/server/api.js", -- 2.25.1