diff --git a/com/Acrobot/ChestShop/Listeners/PostTransaction/TransactionMessageSender.java b/com/Acrobot/ChestShop/Listeners/PostTransaction/TransactionMessageSender.java index 148a6df..2de15d3 100644 --- a/com/Acrobot/ChestShop/Listeners/PostTransaction/TransactionMessageSender.java +++ b/com/Acrobot/ChestShop/Listeners/PostTransaction/TransactionMessageSender.java @@ -100,7 +100,7 @@ public class TransactionMessageSender implements Listener { StringBuilder message = new StringBuilder(15); for (ItemStack item : stock) { - message.append(item.getType().name()).append(' ').append(item.getAmount()); + message.append(item.getAmount()).append(' ').append(item.getType().name()); } return message.toString(); diff --git a/plugin.yml b/plugin.yml index 78e1610..6d9c503 100644 --- a/plugin.yml +++ b/plugin.yml @@ -2,7 +2,7 @@ name: ChestShop main: com.Acrobot.ChestShop.ChestShop -version: 3.50t0002 +version: 3.50t0003 #for CButD dev-url: http://dev.bukkit.org/server-mods/chestshop/