Skip to content

Commit f8864f5

Browse files
author
TheProgramSrc
committed
Change log:
• Fixed bug GUI and BrowserGUI being registered 2 times as listeners
1 parent a83532b commit f8864f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>xyz.theprogramsrc</groupId>
88
<artifactId>SuperCoreAPI</artifactId>
9-
<version>3.2.9</version>
9+
<version>3.3.0</version>
1010
<packaging>jar</packaging>
1111

1212
<name>SuperCoreAPI</name>

src/main/java/xyz/theprogramsrc/supercoreapi/spigot/guis/GUI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public abstract class GUI extends SpigotModule {
4141
* @param player who will view the GUI
4242
*/
4343
public GUI(SpigotPlugin plugin, Player player){
44-
super(plugin);
44+
super(plugin,false);
4545
this.player = player;
4646
this.placeholders = new HashMap<>();
4747
this.buttons = new HashMap<>();

0 commit comments

Comments
 (0)