2014-09-01 23:54:34 +00:00
|
|
|
From de4f4dd30cca12c86d93491af6543d91724e5951 Mon Sep 17 00:00:00 2001
|
2014-09-01 19:11:02 +00:00
|
|
|
From: md_5 <git@md-5.net>
|
|
|
|
Date: Mon, 1 Sep 2014 19:36:20 +1000
|
|
|
|
Subject: [PATCH] Skip loading of ProtocolLib and Orebfuscator.
|
|
|
|
|
|
|
|
As it does not work with Spigot 1.8 builds!
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/plugin/SimplePluginManager.java b/src/main/java/org/bukkit/plugin/SimplePluginManager.java
|
2014-09-01 23:54:34 +00:00
|
|
|
index 1d51908..9e5d4fd 100644
|
2014-09-01 19:11:02 +00:00
|
|
|
--- a/src/main/java/org/bukkit/plugin/SimplePluginManager.java
|
|
|
|
+++ b/src/main/java/org/bukkit/plugin/SimplePluginManager.java
|
|
|
|
@@ -132,6 +132,18 @@ public final class SimplePluginManager implements PluginManager {
|
|
|
|
try {
|
|
|
|
description = loader.getPluginDescription(file);
|
|
|
|
String name = description.getName();
|
|
|
|
+ // Spigot Start
|
2014-09-01 23:54:34 +00:00
|
|
|
+ if ( name.equalsIgnoreCase( "ProtocolLib" ) && !description.getVersion().endsWith( "-HACK" ) )
|
2014-09-01 19:11:02 +00:00
|
|
|
+ {
|
|
|
|
+ server.getLogger().log( Level.WARNING, "Skipping loading of ProtocolLib as it does not work with Spigot 1.8 builds!" );
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+ if ( name.equalsIgnoreCase( "Orebfuscator" ) )
|
|
|
|
+ {
|
|
|
|
+ server.getLogger().log( Level.WARNING, "Skipping loading of Orebfuscator as it does not work with Spigot 1.8 builds!" );
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+ // Spigot End
|
|
|
|
if (name.equalsIgnoreCase("bukkit") || name.equalsIgnoreCase("minecraft") || name.equalsIgnoreCase("mojang")) {
|
|
|
|
server.getLogger().log(Level.SEVERE, "Could not load '" + file.getPath() + "' in folder '" + directory.getPath() + "': Restricted Name");
|
|
|
|
continue;
|
|
|
|
--
|
|
|
|
1.9.1
|
|
|
|
|