t: april fools fix
This commit is contained in:
+23
-6
@@ -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
|
||||
|
||||
|
||||
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user