mirror of
https://github.com/PryPurity/WorldBorder.git
synced 2024-11-14 10:15:36 +01:00
Release 1.4.2: removed usage of ColouredConsoleSender, as it apparently can now trigger a console duping bug
This commit is contained in:
parent
f24c676c18
commit
887c858b81
@ -861,11 +861,12 @@ is divided into following sections:
|
||||
<classpath>
|
||||
<path path="${javac.classpath}"/>
|
||||
</classpath>
|
||||
<fileset dir="${src.src.dir}" excludes="${excludes}" includes="${includes}">
|
||||
<fileset dir="${src.src.dir}" excludes="*.java,${excludes}" includes="${includes}">
|
||||
<filename name="**/*.java"/>
|
||||
</fileset>
|
||||
<fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
|
||||
<include name="**/*.java"/>
|
||||
<exclude name="*.java"/>
|
||||
</fileset>
|
||||
</javadoc>
|
||||
<copy todir="${dist.javadoc.dir}">
|
||||
|
@ -4,5 +4,5 @@ build.xml.stylesheet.CRC32=28e38971@1.38.3.45
|
||||
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
|
||||
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
|
||||
nbproject/build-impl.xml.data.CRC32=7ce24f55
|
||||
nbproject/build-impl.xml.script.CRC32=83187d5f
|
||||
nbproject/build-impl.xml.stylesheet.CRC32=0c01fd8e@1.43.1.45
|
||||
nbproject/build-impl.xml.script.CRC32=b6c24088
|
||||
nbproject/build-impl.xml.stylesheet.CRC32=0ae3a408@1.44.1.45
|
||||
|
@ -16,9 +16,6 @@ import org.bukkit.plugin.Plugin;
|
||||
import org.bukkit.util.config.Configuration;
|
||||
import org.bukkit.util.config.ConfigurationNode;
|
||||
|
||||
import org.bukkit.craftbukkit.command.ColouredConsoleSender;
|
||||
import org.bukkit.craftbukkit.CraftServer;
|
||||
|
||||
import org.anjocaido.groupmanager.GroupManager;
|
||||
import com.nijiko.permissions.PermissionHandler;
|
||||
import com.nijikokun.bukkit.Permissions.Permissions;
|
||||
@ -38,7 +35,6 @@ public class Config
|
||||
public static WorldTrimTask trimTask = null;
|
||||
public static Set<String> movedPlayers = Collections.synchronizedSet(new HashSet<String>());
|
||||
private static Runtime rt = Runtime.getRuntime();
|
||||
private static ColouredConsoleSender console = null;
|
||||
|
||||
// actual configuration values which can be changed
|
||||
private static boolean shapeRound = true;
|
||||
@ -306,14 +302,7 @@ public class Config
|
||||
private static final String logName = "WorldBorder";
|
||||
public static void Log(Level lvl, String text)
|
||||
{
|
||||
if (console != null)
|
||||
{
|
||||
if (lvl != Level.INFO)
|
||||
text = "[" + lvl.getLocalizedName() + "] " + text;
|
||||
console.sendMessage(String.format("[%s] %s", logName, text));
|
||||
}
|
||||
else
|
||||
mcLog.log(lvl, String.format("[%s] %s", logName, text));
|
||||
mcLog.log(lvl, String.format("[%s] %s", logName, text));
|
||||
}
|
||||
public static void Log(String text)
|
||||
{
|
||||
@ -334,8 +323,7 @@ public class Config
|
||||
public static void load(WorldBorder master, boolean logIt)
|
||||
{ // load config from file
|
||||
plugin = master;
|
||||
console = new ColouredConsoleSender((CraftServer)plugin.getServer());
|
||||
cfg = plugin.getConfiguration();
|
||||
cfg = plugin.getConfiguration();
|
||||
|
||||
int cfgVersion = cfg.getInt("cfg-version", currentCfgVersion);
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
name: WorldBorder
|
||||
author: Brettflan
|
||||
description: Efficient, feature-rich plugin for limiting the size of your worlds.
|
||||
version: 1.4.1
|
||||
version: 1.4.2
|
||||
main: com.wimbli.WorldBorder.WorldBorder
|
||||
softdepend:
|
||||
- Essentials
|
||||
|
Loading…
Reference in New Issue
Block a user