mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 15:30:19 +01:00
SPIGOT-4313: Unsupported plugin should not crash server
This commit is contained in:
parent
479ec05e3b
commit
f598574711
1 changed files with 3 additions and 4 deletions
|
@ -34,9 +34,8 @@ import org.bukkit.craftbukkit.block.data.CraftBlockData;
|
||||||
import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
import org.bukkit.material.MaterialData;
|
import org.bukkit.material.MaterialData;
|
||||||
import org.bukkit.plugin.PluginAwareness;
|
import org.bukkit.plugin.InvalidPluginException;
|
||||||
import org.bukkit.plugin.PluginDescriptionFile;
|
import org.bukkit.plugin.PluginDescriptionFile;
|
||||||
import org.bukkit.plugin.UnknownDependencyException;
|
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
@SuppressWarnings("deprecation")
|
||||||
public final class CraftMagicNumbers implements UnsafeValues {
|
public final class CraftMagicNumbers implements UnsafeValues {
|
||||||
|
@ -204,10 +203,10 @@ public final class CraftMagicNumbers implements UnsafeValues {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void checkSupported(PluginDescriptionFile pdf) {
|
public void checkSupported(PluginDescriptionFile pdf) throws InvalidPluginException {
|
||||||
if (pdf.getAPIVersion() != null) {
|
if (pdf.getAPIVersion() != null) {
|
||||||
if (!pdf.getAPIVersion().equals("1.13")) {
|
if (!pdf.getAPIVersion().equals("1.13")) {
|
||||||
throw new UnknownDependencyException("Unsupported API version " + pdf.getAPIVersion());
|
throw new InvalidPluginException("Unsupported API version " + pdf.getAPIVersion());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue