Remove Geyser-Sponge (#4097)

See PR for details
This commit is contained in:
Konicai 2023-09-11 13:54:24 -04:00 committed by GitHub
parent c67d50c13e
commit f78e6dd7e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 6 additions and 910 deletions

View file

@ -29,10 +29,14 @@ package org.geysermc.geyser.api.util;
* Represents the platform Geyser is running on.
*/
public record PlatformType(String platformName) {
@Deprecated
public static final PlatformType ANDROID = new PlatformType("Android");
public static final PlatformType BUNGEECORD = new PlatformType("BungeeCord");
public static final PlatformType FABRIC = new PlatformType("Fabric");
public static final PlatformType SPIGOT = new PlatformType("Spigot");
@Deprecated
public static final PlatformType SPONGE = new PlatformType("Sponge");
public static final PlatformType STANDALONE = new PlatformType("Standalone");
public static final PlatformType VELOCITY = new PlatformType("Velocity");