mirror of
https://github.com/EndPwnArchive/endpwn3.git
synced 2024-08-15 00:23:30 +00:00
h
This commit is contained in:
parent
0c94e41785
commit
ec80470907
1 changed files with 13 additions and 8 deletions
|
@ -34,6 +34,9 @@
|
|||
// fetch the changelog
|
||||
fetch('https://endpwn.github.io/changelog.md?_=' + Date.now()).then(r => r.text()).then(l => {
|
||||
|
||||
// we're racing discord's initialization procedures; try and hit a timing sweetspot
|
||||
setTimeout(() => {
|
||||
|
||||
// get the changelog object
|
||||
var log = $api.util.findFuncExports('changeLog');
|
||||
var data = l.split(';;');
|
||||
|
@ -45,6 +48,8 @@
|
|||
// prepend to the changelog body
|
||||
log.changeLog.body = data[1] + '\n\n' + log.changeLog.body;
|
||||
|
||||
}, 100);
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue