add paper to the "isUsingSpigot" check (#468)

partially fixes #467
will make protocollib use the spigot updater on paper servers.
This commit is contained in:
MiniDigger 2018-05-18 20:10:46 +02:00 committed by Dan Mulloy
parent 1ddb7a0014
commit 0f13a32925
1 changed files with 3 additions and 3 deletions

View File

@ -53,11 +53,11 @@ public class Util {
}
/**
* Whether or not this server is running Spigot. This works by checking
* the server version for the String "Spigot"
* Whether or not this server is running Spigot or a Spigot fork. This works by checking
* the server version for the Strings "Spigot" or "Paper".
* @return True if it is, false if not.
*/
public static boolean isUsingSpigot() {
return Bukkit.getServer().getVersion().contains("Spigot");
return Bukkit.getServer().getVersion().contains("Spigot") || Bukkit.getServer().getVersion().contains("Paper");
}
}