Archiviert
13
0

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

partially fixes #467
will make protocollib use the spigot updater on paper servers.
Dieser Commit ist enthalten in:
MiniDigger 2018-05-18 20:10:46 +02:00 committet von Dan Mulloy
Ursprung 1ddb7a0014
Commit 0f13a32925

Datei anzeigen

@ -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");
}
}