Skip to content

Commit bde890d

Browse files
Updated the version and author information.
1 parent f4c0b7d commit bde890d

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>KingdomProgrammers</groupId>
88
<artifactId>More-Recipes</artifactId>
9-
<version>v1.5</version>
9+
<version>1.6-ALPHA</version>
1010
<packaging>jar</packaging>
1111

1212
<name>More Recipes</name>

src/main/java/dansplugins/recipesystem/MoreRecipes.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

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

2424
public static MoreRecipes getInstance() {
@@ -56,7 +56,7 @@ public boolean onCommand(CommandSender sender, Command cmd, String label, String
5656
}
5757

5858
public String getVersion() {
59-
return version;
59+
return pluginVersion;
6060
}
6161

6262
private void handlebStatsIntegration() {

src/main/java/dansplugins/recipesystem/commands/DefaultCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public DefaultCommand() {
2020
@Override
2121
public boolean execute(CommandSender commandSender) {
2222
commandSender.sendMessage(ChatColor.AQUA + "More Recipes " + MoreRecipes.getInstance().getVersion());
23-
commandSender.sendMessage(ChatColor.AQUA + "Developed by: Daniel Stephenson");
23+
commandSender.sendMessage(ChatColor.AQUA + "Developed by: Daniel McCoy Stephenson, Rykurock");
2424
commandSender.sendMessage(ChatColor.AQUA + "Wiki: https://github.com/Dans-Plugins/More-Recipes/wiki");
2525
return true;
2626
}

src/main/java/dansplugins/recipesystem/objects/PrismarineShard.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import org.bukkit.inventory.ShapedRecipe;
1010

1111
import static org.bukkit.Material.PRISMARINE_SHARD;
12-
import static org.bukkit.Material.TOTEM_OF_UNDYING;
1312

1413
public class PrismarineShard {
1514

src/main/resources/plugin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: More-Recipes
2-
version: "1.5"
3-
author: DanTheTechMan
2+
version: '${project.version}'
3+
author: Daniel McCoy Stephenson, Rykurock
44
main: dansplugins.recipesystem.MoreRecipes
55
api-version: "1.13"
66

0 commit comments

Comments
 (0)