Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit 27c46cd

Browse files
committed
accidentally replaced all "config" with "instance.getConfig()"
1 parent 4cfd0d7 commit 27c46cd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/me/refrac/simpleannounce/bungee/commands/AnnounceCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public void execute(CommandSender sender, String[] args) {
3535
player.sendMessage(Utils.formatComponent("&b&lSimpleAnnounce &7by Refrac"));
3636
player.sendMessage(new TextComponent(""));
3737
player.sendMessage(Utils.formatComponent("&b/announce <message> &7- Announce your messages"));
38-
player.sendMessage(Utils.formatComponent("&b/announce reload &7- Reload your instance.getConfig() files"));
38+
player.sendMessage(Utils.formatComponent("&b/announce reload &7- Reload your config files"));
3939
}
4040

4141
if (args.length != 1) return;

src/main/java/me/refrac/simpleannounce/spigot/commands/AnnounceCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public boolean onCommand(CommandSender sender, Command command, String label, St
3737
player.sendMessage(Utils.format("&b&lSimpleAnnounce &7by Refrac"));
3838
player.sendMessage("");
3939
player.sendMessage(Utils.format("&b/announce <message> &7- Announce your messages"));
40-
player.sendMessage(Utils.format("&b/announce reload &7- Reload your instance.getConfig() files"));
40+
player.sendMessage(Utils.format("&b/announce reload &7- Reload your config files"));
4141
}
4242

4343
if (args.length != 1) return false;

0 commit comments

Comments
 (0)