From f8a0c81f37ff4f726ca18408c3d5772f0794d749 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Wed, 10 Aug 2022 21:24:10 +0800 Subject: fix enchant thing + tall gui + meta --- features/streamsGUI/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'features/streamsGUI') 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 } }) }) -- cgit