diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-08-10 21:24:10 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-08-10 21:24:10 +0800 |
commit | f8a0c81f37ff4f726ca18408c3d5772f0794d749 (patch) | |
tree | 8bb91f1177b5a7a4f85984dc47ff1a6a6ce8b59b /features/streamsGUI | |
parent | 32367f35133cc3f4583d2bf42ea2e5777c3ac46c (diff) | |
download | SoopyV2-f8a0c81f37ff4f726ca18408c3d5772f0794d749.tar.gz SoopyV2-f8a0c81f37ff4f726ca18408c3d5772f0794d749.tar.bz2 SoopyV2-f8a0c81f37ff4f726ca18408c3d5772f0794d749.zip |
fix enchant thing + tall gui + meta
Diffstat (limited to 'features/streamsGUI')
-rw-r--r-- | features/streamsGUI/index.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/features/streamsGUI/index.js b/features/streamsGUI/index.js index 390f625..9b8e1d7 100644 --- a/features/streamsGUI/index.js +++ b/features/streamsGUI/index.js @@ -73,15 +73,15 @@ class StreamPage extends GuiPage { let stream = streams.twitch[channel] if (i % 2 === 0) { - let element = new StreamElement().setLocation(0, y, 0.45, 0.55).setStreamPage(this) + let element = new StreamElement().setLocation(0, y, 0.45, 0.4).setStreamPage(this) this.streamsBox.addChild(element) element.setStream(stream, true) } if (i % 2 === 1) { - let element = new StreamElement().setLocation(0.55, y, 0.45, 0.55).setStreamPage(this) + let element = new StreamElement().setLocation(0.55, y, 0.45, 0.4).setStreamPage(this) this.streamsBox.addChild(element) element.setStream(stream, true) - y += 0.6 + y += 0.45 } }) }) |