ChestShop-3/com/Acrobot/ChestShop/Utils/WorldGuard/ChestShopFlag.java
Acrobot e87f5f4f11 - Added a warning if spawn-radius isn't set to 0
- 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
2012-03-06 19:41:14 +01:00

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);
}
}