From ac153df4f90292ff4b2bd06d9ad65967fa3bfb02 Mon Sep 17 00:00:00 2001 From: vvo <> Date: Mon, 10 Apr 2023 14:35:05 +0800 Subject: [PATCH] t: april fools fix --- sdvx@asphyxia/README.md | 29 +++++++++++++++++++++++------ sdvx@asphyxia/handlers/common.ts | 2 +- 2 files changed, 24 insertions(+), 7 deletions(-) diff --git a/sdvx@asphyxia/README.md b/sdvx@asphyxia/README.md index 4984400..ec2da3a 100644 --- a/sdvx@asphyxia/README.md +++ b/sdvx@asphyxia/README.md @@ -27,20 +27,37 @@ The plugin now mainly maintained versions: - VIVIDWAVE - EXCEED GEAR -Change Log +Fork Changelog =========== +### Latest supported game version +- 2022122001 -## 6.0.0-fork +## fork-6.0.0.1 -1. Arena Station -2. Valkyrie Generator support -- requires Valkyrie mode -3. WebUI features: - - [WebUI asset update](/plugin/sdvx@asphyxia/WebUI%20resource%20update) -- retrieves assets from sdvx data to update various webui assets such as the music_db, bgm, submonitor_bg, nemsys, crew, etc. Useful for updating webui assets when new game updates happen. +### New: + +1. Support for 221220 +2. Arena Station +3. Valkyrie Generator support -- requires Valkyrie mode +4. WebUI features: + - [WebUI asset update](/plugin/sdvx@asphyxia/WebUI%20resource%20update) -- retrieves assets from sdvx data to update various webui assets such as the music db, bgm, submonitor bg, nemsys, crew, etc. Useful for updating webui assets when new game updates happen. - [Events page (wip)](/plugin/sdvx@asphyxia/events%20and%20presents) -- a page to toggle unlocking of songs and other items unlocked by previous events (in-game or otherwise) - [Profile pages](/plugin/sdvx@asphyxia/profiles): - Valkyrie Generator item list -- displays a profile's valkyrie/premium generator items that they've already unlocked - Gacha feature for Premium Generator - [Songs List](/plugin/sdvx@asphyxia/songs%20list) +5. Handler for showing unlocked items on card entry. + +### Fixes: + +1. Various generator issues: + - Incorrect valkyrie/premium generator volume data fixed + - Generator code bug fixes. +2. April fools event trigger: + - Code checks if date has "4/1" in it anywhere, which means it will trigger on dates like 4/10, and 4/15. This has been fixed. + +Change Log +=========== ## 6.0.0 diff --git a/sdvx@asphyxia/handlers/common.ts b/sdvx@asphyxia/handlers/common.ts index eb7c58c..8083443 100644 --- a/sdvx@asphyxia/handlers/common.ts +++ b/sdvx@asphyxia/handlers/common.ts @@ -339,7 +339,7 @@ export const common: EPR = async (info, data, send) => { }) }) - if(currentDate.substring(0,3) === '4/1') { + if(currentDate.substring(0,4) === '4/1/') { console.log('Using April Fools Event') events.push('APRIL_GRACE'); events.push('EVENTDATE_APRILFOOL');