Skip to content

Commit

Permalink
Version 0.4.0
Browse files Browse the repository at this point in the history
Typo in output of emeraldToXP() fixed.
  • Loading branch information
501st-alpha1 committed Nov 6, 2012
1 parent f65c0ff commit 711424a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file modified com/scott_weldon/xp_to_emerald/XPtoEmerald.class
Binary file not shown.
4 changes: 2 additions & 2 deletions com/scott_weldon/xp_to_emerald/XPtoEmerald.java
Original file line number Diff line number Diff line change
Expand Up @@ -406,8 +406,8 @@ public boolean emeraldToXP(Player player, int emeralds) {
inventory.remove(emeraldId);

if (numOfEmeralds < emeralds) {
player.sendMessage("You only have " + numOfEmeralds + material.toString()
+ "s!");
player.sendMessage("You only have " + numOfEmeralds + " "
+ material.toString() + "s!");
inventory.addItem(new ItemStack(material, numOfEmeralds));
return true;
}
Expand Down
2 changes: 1 addition & 1 deletion plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: XP to Emerald
main: com.scott_weldon.xp_to_emerald.XPtoEmerald
version: 0.4-dev
version: 0.4.0
commands:
xptoemerald:
description: Convert some XP to Emeralds.
Expand Down

0 comments on commit 711424a

Please sign in to comment.