[fix] name appending wrong

This commit is contained in:
kwaroran
2023-12-24 22:07:12 +09:00
parent 464fcccf6d
commit 036fc00f7b
6 changed files with 37 additions and 12 deletions

17
src/etc/updateLog.ts Normal file
View File

@@ -0,0 +1,17 @@
export const patchNote = {
version: "1.68.0",
content:
`
- Added Post End
- Added Send Chat as System
- Added Utility Override
- Minor fixes
`
}
export function getPatchNote(version: string){
if(patchNote.version.split(".")[1] === version.split(".")[1] && patchNote.version.split(".")[0] === version.split(".")[0]){
return patchNote.content
}
return ''
}