diff --git a/sdvx@asphyxia/data/exg.ts b/sdvx@asphyxia/data/exg.ts index 7bfb40f..97dd3bf 100644 --- a/sdvx@asphyxia/data/exg.ts +++ b/sdvx@asphyxia/data/exg.ts @@ -46,7 +46,8 @@ export const INFORMATION6 = { '2022071200': ['[img:ver06/info_psd.ifs:hexa_diver_220714]'], '2022081600': ['[img:ver06/info_psd.ifs:hexa_diver_220714]', '[img:ver06/info_psd.ifs:hexa_diver_220818]'], '2022083000': ['[img:ver06/info_psd.ifs:hexa_diver_220714]', '[img:ver06/info_psd.ifs:hexa_diver_220818]', '[img:ver06/info_psd.ifs:paseli_present_220901]'], - '2022101800': ['[img:ver06/info_psd.ifs:hexa_diver_220714]', '[img:ver06/info_psd.ifs:hexa_diver_220818]', '[img:ver06/info_psd.ifs:paseli_present_220901]'] + '2022101800': ['[img:ver06/info_psd.ifs:hexa_diver_220714]', '[img:ver06/info_psd.ifs:hexa_diver_220818]', '[img:ver06/info_psd.ifs:paseli_present_220901]'], + '2022122001': ['[img:ver06/info_psd.ifs:hexa_diver_220714]', '[img:ver06/info_psd.ifs:hexa_diver_220818]', '[img:ver06/info_psd.ifs:paseli_present_220901]'] } export const MISSINGSONGS6 = [ diff --git a/sdvx@asphyxia/handlers/common.ts b/sdvx@asphyxia/handlers/common.ts index 27db572..eb7c58c 100644 --- a/sdvx@asphyxia/handlers/common.ts +++ b/sdvx@asphyxia/handlers/common.ts @@ -170,22 +170,24 @@ export const common: EPR = async (info, data, send) => { let time = new Date(); let tempDate = time.getDate(); const currentTime = parseInt((time.getTime()/100000) as unknown as string)*100; - extend.push({ - id: 1, - type: 1, - params: [ - 1, - currentTime, - 1, - 1, - 31, - '[f:0]SERVER INFORMATION', - INFORMATION6[version.toString()][Math.floor(Math.random() * (INFORMATION6[version.toString()].length - 1))], - '', - '', - '', - ], - }); + for(const keyIter in INFORMATION6[version.toString()]) { + extend.push({ + id: parseInt(keyIter) + 1, + type: 1, + params: [ + 1, + currentTime, + 0, + 0, + 31, + '[f:0]SERVER INFORMATION', + INFORMATION6[version.toString()][keyIter], + '', + '', + '', + ], + }); + } } if(U.GetConfig('use_asphyxia_gameover')){