Skip to content

Commit

Permalink
Update to v1.31.16
Browse files Browse the repository at this point in the history
Fix missing description for reload command
  • Loading branch information
GeorgH93 committed May 15, 2019
1 parent 56ef10f commit 2e345a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>at.pcgamingfreaks</groupId>
<artifactId>MarriageMaster</artifactId>
<version>1.31.15</version>
<version>1.31.16</version>
<name>MarriageMaster</name>

<repositories>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ public void showHelp(Player player)
}
if(plugin.CheckPerm(player, "marry.reload", false))
{
player.sendMessage(ChatColor.AQUA + "/marry reload" + separator + plugin.lang.get("Description.reload"));
player.sendMessage(ChatColor.AQUA + "/marry reload" + separator + plugin.lang.get("Description.Reload"));
}
if(plugin.lang.get("Description.HelpFooter") != null && !plugin.lang.get("Description.HelpFooter").isEmpty())
{
Expand Down Expand Up @@ -1007,6 +1007,6 @@ private void showHelp(CommandSender sender)
{
sender.sendMessage(ChatColor.AQUA + "/marry update" + ChatColor.WHITE + " - " + plugin.lang.get("Description.Update"));
}
sender.sendMessage(ChatColor.AQUA + "/marry reload" + ChatColor.WHITE + " - " + plugin.lang.get("Description.reload"));
sender.sendMessage(ChatColor.AQUA + "/marry reload" + ChatColor.WHITE + " - " + plugin.lang.get("Description.Reload"));
}
}

0 comments on commit 2e345a4

Please sign in to comment.