mirror of
https://e.coding.net/circlecloud/QuickShop.git
synced 2025-11-24 21:26:25 +00:00
@@ -24,6 +24,8 @@ import org.maxgamer.QuickShop.Database.Database;
|
|||||||
import org.maxgamer.QuickShop.Util.MsgUtil;
|
import org.maxgamer.QuickShop.Util.MsgUtil;
|
||||||
import org.maxgamer.QuickShop.Util.Util;
|
import org.maxgamer.QuickShop.Util.Util;
|
||||||
|
|
||||||
|
import cn.citycraft.PluginHelper.kit.PluginKit;
|
||||||
|
|
||||||
public class ShopManager {
|
public class ShopManager {
|
||||||
private final HashMap<String, Info> actions = new HashMap<String, Info>();
|
private final HashMap<String, Info> actions = new HashMap<String, Info>();
|
||||||
|
|
||||||
@@ -296,7 +298,12 @@ public class ShopManager {
|
|||||||
bs.setType(Material.WALL_SIGN);
|
bs.setType(Material.WALL_SIGN);
|
||||||
final Sign sign = (Sign) bs.getData();
|
final Sign sign = (Sign) bs.getData();
|
||||||
sign.setFacingDirection(bf);
|
sign.setFacingDirection(bf);
|
||||||
|
PluginKit.runTask(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
bs.update(true);
|
bs.update(true);
|
||||||
|
}
|
||||||
|
});
|
||||||
shop.setSignText();
|
shop.setSignText();
|
||||||
}
|
}
|
||||||
if (shop instanceof ContainerShop) {
|
if (shop instanceof ContainerShop) {
|
||||||
|
|||||||
Reference in New Issue
Block a user