Skip to content

Commit 5a0b750

Browse files
author
Francisco Solis
committed
Final fix for SettingsGui
* Final fix for SettingsGui (forgot to change the way to open the gui)
1 parent f1d47bd commit 5a0b750

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

dependency-reduced-pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<artifactId>SuperCoreAPI</artifactId>
66
<name>SuperCoreAPI</name>
77
<version>5.2.2-SNAPSHOT</version>
8+
<description>The best way to create a plugin.</description>
9+
<url>https://github.com/TheProgramSrc/SuperCoreAPI</url>
810
<build>
911
<sourceDirectory>src/main/java</sourceDirectory>
1012
<testSourceDirectory>src/test/java</testSourceDirectory>

src/main/java/xyz/theprogramsrc/supercoreapi/spigot/gui/precreated/settings/SettingsGui.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ public abstract class SettingsGui extends Gui{
2121
private SettingPane[] settingPanes;
2222

2323
public SettingsGui(Player player){
24-
super(player);
24+
super(player, false);
2525
this.current = -1;
2626
this.settingPanes = this.getSettingPanes();
27+
this.open();
2728
}
2829

2930
@Override

0 commit comments

Comments
 (0)