Skip to content

Commit

Permalink
- Fixed incorrect config text
Browse files Browse the repository at this point in the history
- Added text after changing starting items
  • Loading branch information
CoocooFroggy committed Aug 6, 2020
1 parent 7908e4b commit 64c69d4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
Binary file modified out/artifacts/Bomb_Lobbers_jar/Bomb Lobbers.jar
Binary file not shown.
1 change: 1 addition & 0 deletions src/com/CoocooFroggy/bomblobbers/InventoryListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -226,5 +226,6 @@ public void onClose(InventoryCloseEvent event) {

plugin.getConfig().set("startingItems", contents);
plugin.saveConfig();
event.getPlayer().sendMessage(ChatColor.GREEN + "Starting items saved.");
}
}
2 changes: 1 addition & 1 deletion src/com/CoocooFroggy/bomblobbers/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public boolean configCommand(CommandSender sender, Command command, String label
if (sender.hasPermission("bomblobbers.config")) {
if (args.length < 2) {
//If "/bl config"
sender.sendMessage(ChatColor.RED + "Specify what to config. Options are: " + ChatColor.GOLD + "velocity");
sender.sendMessage(ChatColor.RED + "Specify what to config. Options are: " + ChatColor.GOLD + "velocity, givetime, cooldown, directhitvelocity, directhitdamage, waterdamage, countdown, items, reset");
return false;
}
if (args[1].equalsIgnoreCase("velocity")) {
Expand Down

0 comments on commit 64c69d4

Please sign in to comment.