summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Ward <chris@chrisgward.com>2014-01-30 10:43:26 +1100
committerChris Ward <chris@chrisgward.com>2014-01-30 10:43:26 +1100
commit5b5be164b6e4a103cef1c3be1dc477f77540c0e9 (patch)
tree7c2cd95a563af69cf432e061df5c644f8dc82770
parent466b4ae7c537e956aed5cca991bf05ad8bdecbd6 (diff)
downloadEssentials-5b5be164b6e4a103cef1c3be1dc477f77540c0e9.tar
Essentials-5b5be164b6e4a103cef1c3be1dc477f77540c0e9.tar.gz
Essentials-5b5be164b6e4a103cef1c3be1dc477f77540c0e9.tar.lz
Essentials-5b5be164b6e4a103cef1c3be1dc477f77540c0e9.tar.xz
Essentials-5b5be164b6e4a103cef1c3be1dc477f77540c0e9.zip
Allow the use of non-development Bukkit builds at runtime
Unsafe code is surrounded by sufficient handling
-rw-r--r--Essentials/src/com/earth2me/essentials/Essentials.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/Essentials.java b/Essentials/src/com/earth2me/essentials/Essentials.java
index a7e9e2e71..1716f8ff4 100644
--- a/Essentials/src/com/earth2me/essentials/Essentials.java
+++ b/Essentials/src/com/earth2me/essentials/Essentials.java
@@ -82,7 +82,7 @@ import org.yaml.snakeyaml.error.YAMLException;
public class Essentials extends JavaPlugin implements net.ess3.api.IEssentials
{
- public static final int BUKKIT_VERSION = 2985;
+ public static final int BUKKIT_VERSION = 2882;
private static final Logger LOGGER = Logger.getLogger("Essentials");
private transient ISettings settings;
private final transient TNTExplodeListener tntListener = new TNTExplodeListener(this);