From 7629c1bc4b7000ba3fb4ce5010a7038db253ca52 Mon Sep 17 00:00:00 2001 From: Acrobot Date: Fri, 10 Aug 2012 22:40:49 +0200 Subject: [PATCH] Fixed incorrect string ordering --- .../Listeners/PostTransaction/TransactionMessageSender.java | 2 +- plugin.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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/