mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-23 10:35:15 +01:00
Fixed incorrect string ordering
This commit is contained in:
parent
24447d5e05
commit
7629c1bc4b
@ -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();
|
||||
|
@ -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/
|
||||
|
Loading…
Reference in New Issue
Block a user