geforkt von Mirrors/FastAsyncWorldEdit
Remove unnecessary version check
Due the provided scope and api-version it won't load on older versions anyway
Dieser Commit ist enthalten in:
Ursprung
27512ceab3
Commit
9f2baf71f7
@ -19,7 +19,6 @@
|
|||||||
|
|
||||||
package com.sk89q.worldedit.bukkit;
|
package com.sk89q.worldedit.bukkit;
|
||||||
|
|
||||||
|
|
||||||
import com.boydti.fawe.Fawe;
|
import com.boydti.fawe.Fawe;
|
||||||
import com.boydti.fawe.bukkit.FaweBukkit;
|
import com.boydti.fawe.bukkit.FaweBukkit;
|
||||||
import com.google.common.base.Joiner;
|
import com.google.common.base.Joiner;
|
||||||
@ -93,19 +92,6 @@ import static com.sk89q.worldedit.internal.anvil.ChunkDeleter.DELCHUNKS_FILE_NAM
|
|||||||
*/
|
*/
|
||||||
public class WorldEditPlugin extends JavaPlugin { //implements TabCompleter
|
public class WorldEditPlugin extends JavaPlugin { //implements TabCompleter
|
||||||
|
|
||||||
// This must be before the Logger is initialized, which fails in 1.8
|
|
||||||
private static final String FAILED_VERSION_CHECK =
|
|
||||||
"\n**********************************************\n"
|
|
||||||
+ "** This Minecraft version (%s) is not supported by this version of WorldEdit.\n"
|
|
||||||
+ "** Please download an OLDER version of WorldEdit which does.\n"
|
|
||||||
+ "**********************************************\n";
|
|
||||||
|
|
||||||
static {
|
|
||||||
if (PaperLib.getMinecraftVersion() < 13) {
|
|
||||||
throw new IllegalStateException(String.format(FAILED_VERSION_CHECK, Bukkit.getVersion()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static final Logger log = LoggerFactory.getLogger(WorldEditPlugin.class);
|
private static final Logger log = LoggerFactory.getLogger(WorldEditPlugin.class);
|
||||||
public static final String CUI_PLUGIN_CHANNEL = "worldedit:cui";
|
public static final String CUI_PLUGIN_CHANNEL = "worldedit:cui";
|
||||||
private static WorldEditPlugin INSTANCE;
|
private static WorldEditPlugin INSTANCE;
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren