修改语言文件 调整保存商店信息...

Signed-off-by: 502647092 <jtb1@163.com>
pull/3/HEAD
502647092 2015-11-27 12:04:20 +08:00
parent 8aa88ddfef
commit ab54e56821
3 changed files with 6 additions and 6 deletions

View File

@ -643,10 +643,10 @@ public class ContainerShop implements Shop {
+ loc.getBlockZ() + ")");
sb.append(" 所有者: " + getOwner());
if (isUnlimited()) {
sb.append("无限模式: true");
sb.append(" 无限模式: true");
}
sb.append("价格: " + getPrice());
sb.append("物品: " + getItem().toString());
sb.append(" 价格: " + getPrice());
sb.append(" 物品: " + getItem().toString());
return sb.toString();
}

View File

@ -287,7 +287,7 @@ public class ShopManager {
createShop(shop);
p.sendMessage(MsgUtil.p("success-created-shop"));
final Location loc = shop.getLocation();
plugin.log(String.format("玩家: %s 创建了一个 %s 商店 在 (%s - %s,%s,%s)", p.getName(), shop.getDataName(), loc.getWorld().getName(), loc.getX(), loc.getY(), loc.getZ()));
plugin.log(String.format("玩家: %s 创建了一个 %s 商店 在 (%s - %s, %s, %s)", p.getName(), shop.getDataName(), loc.getWorld().getName(), loc.getX(), loc.getY(), loc.getZ()));
if (!plugin.getConfig().getBoolean("shop.lock")) {
// Warn them if they haven't been warned since
// reboot

View File

@ -98,6 +98,6 @@ command:
remove: '&e移除眼前的商店.'
signs:
selling: '出售数量: {0}'
buying: '收购数量: {0}'
selling: '&b出售数量: &3{0}'
buying: '&d收购数量: &3{0}'
price: '每件价格: {0}'