diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-08-03 19:21:17 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-08-03 19:21:17 +0800 |
commit | c9d34afde5042076b41673f4a3de7aa9e23e7e3b (patch) | |
tree | 3aa14fe01d89c5f8bcab75b913d566cf8d902f3a /features/globalSettings/firstLoadPages.js | |
parent | 3525dce1d84a53dae0414388ba886b66323e2afd (diff) | |
download | SoopyV2-c9d34afde5042076b41673f4a3de7aa9e23e7e3b.tar.gz SoopyV2-c9d34afde5042076b41673f4a3de7aa9e23e7e3b.tar.bz2 SoopyV2-c9d34afde5042076b41673f4a3de7aa9e23e7e3b.zip |
small changes to first load page
Diffstat (limited to 'features/globalSettings/firstLoadPages.js')
-rw-r--r-- | features/globalSettings/firstLoadPages.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/features/globalSettings/firstLoadPages.js b/features/globalSettings/firstLoadPages.js index 6955a90..21d84a8 100644 --- a/features/globalSettings/firstLoadPages.js +++ b/features/globalSettings/firstLoadPages.js @@ -12,6 +12,7 @@ class WelcomePage extends FirstLoadPage { this.addChild(new SoopyTextElement().setText("§0Welcome to SoopyV2!").setLocation(0.1, 0.05, 0.8, 0.1).setMaxTextScale(10)); + this.addChild(new SoopyTextElement().setText("§7This menu will guide you through important settings").setLocation(0.1, 0.15, 0.8, 0.075).setMaxTextScale(10)); // this.addChild(new SoopyTextElement().setText("§7First lets get privacy settings out of the way.").setLocation(0.1, 0.15,0.8,0.075).setMaxTextScale(10)); this.settingsArea = new SoopyGuiElement().setLocation(0.1, 0.25, 0.8, 0.75); @@ -38,7 +39,7 @@ class ApiKeyPage extends FirstLoadPage { constructor() { super() - this.addChild(new SoopyTextElement().setText("§0Next lets setup your api key!").setLocation(0.1, 0.05, 0.8, 0.1).setMaxTextScale(10)); + this.addChild(new SoopyTextElement().setText("§0First lets setup your api key!").setLocation(0.1, 0.05, 0.8, 0.1).setMaxTextScale(10)); this.addChild(new SoopyTextElement().setText("§7You can skip this but some features may not work").setLocation(0.1, 0.15, 0.8, 0.075).setMaxTextScale(10)); |