mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-28 13:05:11 +01:00
e87f5f4f11
- Deleted a few outdated plugins from built-in Register - System.out -> System.err for errors - Blocked buying if you're holding a sign in your hand (allows, for example, for sign editors to work) - Updated Heroes package - Fixed WG integration (no longer throws errors, but uses ugly workaround) - Fixed a small bug in Register plugin loading message - Removed version checking for OddItem, WorldGuard and LWC
15 lines
313 B
Java
15 lines
313 B
Java
package com.Acrobot.ChestShop.Utils.WorldGuard;
|
|
|
|
import com.sk89q.worldguard.protection.flags.StateFlag;
|
|
|
|
/**
|
|
* @author Acrobot
|
|
*/
|
|
public class ChestShopFlag extends StateFlag {
|
|
public static ChestShopFlag flag = new ChestShopFlag();
|
|
|
|
public ChestShopFlag() {
|
|
super("chestshop", false);
|
|
}
|
|
}
|