Skip to content

Commit

Permalink
fix: ⏪ Returned "private static SpigotAddon instance;" class
Browse files Browse the repository at this point in the history
I admit it. I'm an idiot who made a revert commit and immediately merged it back xD
  • Loading branch information
MrWeez committed Sep 21, 2024
1 parent 9f4664e commit 8421360
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,14 @@
public class BungeeAddon extends SimpleAddon {

private Bungee plugin;
@SuppressWarnings("unused")
private static BungeeAddon instance;
private DiscordBot bot;
public String prefix;

public BungeeAddon(Bungee pl) {
super("StaffChat","staffchat","Siebrenvde");
instance = this;
plugin = pl;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,14 @@
public class SpigotAddon extends SimpleAddon {

private Spigot plugin;
@SuppressWarnings("unused")
private static SpigotAddon instance;
private DiscordBot bot;
public String prefix;

public SpigotAddon(Spigot pl) {
super("StaffChat","staffchat","Siebrenvde");
instance = this;
plugin = pl;
}

Expand Down

0 comments on commit 8421360

Please sign in to comment.