Skip to content

Commit

Permalink
Updated the version and author information.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmccoystephenson committed Apr 30, 2022
1 parent f4c0b7d commit bde890d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>KingdomProgrammers</groupId>
<artifactId>More-Recipes</artifactId>
<version>v1.5</version>
<version>1.6-ALPHA</version>
<packaging>jar</packaging>

<name>More Recipes</name>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/dansplugins/recipesystem/MoreRecipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

public final class MoreRecipes extends PonderBukkitPlugin {
private static MoreRecipes instance;
public final String version = "v1.6-alpha-1";
private final String pluginVersion = "v" + getDescription().getVersion();
private final CommandService commandService = new CommandService((PonderMC) getPonder());

public static MoreRecipes getInstance() {
Expand Down Expand Up @@ -56,7 +56,7 @@ public boolean onCommand(CommandSender sender, Command cmd, String label, String
}

public String getVersion() {
return version;
return pluginVersion;
}

private void handlebStatsIntegration() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public DefaultCommand() {
@Override
public boolean execute(CommandSender commandSender) {
commandSender.sendMessage(ChatColor.AQUA + "More Recipes " + MoreRecipes.getInstance().getVersion());
commandSender.sendMessage(ChatColor.AQUA + "Developed by: Daniel Stephenson");
commandSender.sendMessage(ChatColor.AQUA + "Developed by: Daniel McCoy Stephenson, Rykurock");
commandSender.sendMessage(ChatColor.AQUA + "Wiki: https://github.com/Dans-Plugins/More-Recipes/wiki");
return true;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import org.bukkit.inventory.ShapedRecipe;

import static org.bukkit.Material.PRISMARINE_SHARD;
import static org.bukkit.Material.TOTEM_OF_UNDYING;

public class PrismarineShard {

Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: More-Recipes
version: "1.5"
author: DanTheTechMan
version: '${project.version}'
author: Daniel McCoy Stephenson, Rykurock
main: dansplugins.recipesystem.MoreRecipes
api-version: "1.13"

Expand Down

0 comments on commit bde890d

Please sign in to comment.