diff options
author | ZerXDE "Till O <blackminer1242@gmail.com> | 2023-01-09 16:53:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-09 16:53:33 +0100 |
commit | 23a461c36d7a2d9dbea4d0fc8f3a62d226aef3de (patch) | |
tree | 576edb2cc73b37306dca32c53280ef256b6c3790 | |
parent | da2d3175552c7a8e259aad0a12db6e2b2af8da4a (diff) | |
download | Vencord-23a461c36d7a2d9dbea4d0fc8f3a62d226aef3de.tar.gz Vencord-23a461c36d7a2d9dbea4d0fc8f3a62d226aef3de.tar.bz2 Vencord-23a461c36d7a2d9dbea4d0fc8f3a62d226aef3de.zip |
oneko: Disable pointer events to not block below buttons (#395)
Updated version of oneko which disables pointer Events.
Co-authored-by: Ven <vendicated@riseup.net>
-rw-r--r-- | src/plugins/oneko.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/oneko.ts b/src/plugins/oneko.ts index ef2f5d6..d95ba2b 100644 --- a/src/plugins/oneko.ts +++ b/src/plugins/oneko.ts @@ -26,7 +26,7 @@ export default definePlugin({ authors: [Devs.Ven, Devs.adryd], start() { - fetch("https://raw.githubusercontent.com/adryd325/oneko.js/14bab15a755d0e35cd4ae19c931d96d306f99f42/oneko.js") + fetch("https://raw.githubusercontent.com/adryd325/oneko.js/5977144dce83e4d71af1de005d16e38eebeb7b72/oneko.js") .then(x => x.text()) .then(s => s.replace("./oneko.gif", "https://raw.githubusercontent.com/adryd325/oneko.js/14bab15a755d0e35cd4ae19c931d96d306f99f42/oneko.gif")) .then(eval); |