geforkt von Mirrors/Velocity
Snapshot 20w46a
Dieser Commit ist enthalten in:
Ursprung
d444bed96b
Commit
d8a39fc438
@ -54,7 +54,7 @@ public enum ProtocolVersion {
|
||||
MINECRAFT_1_16_2(751, "1.16.2"),
|
||||
MINECRAFT_1_16_3(753, "1.16.3"),
|
||||
MINECRAFT_1_16_4(754, "1.16.4", "1.16.5"),
|
||||
MINECRAFT_1_17(-1, 5, "1.17"); // Note: Indev as of 20w45a (754, borked by Mojang)
|
||||
MINECRAFT_1_17(-1, 6, "1.17"); // Note: Indev as of 20w45a (754, borked by Mojang)
|
||||
|
||||
private static final int SNAPSHOT_BIT = 30;
|
||||
|
||||
|
@ -226,7 +226,9 @@ public interface Player extends CommandSource, Identified, InboundConnection,
|
||||
* @param url the URL for the resource pack
|
||||
* @param hash the SHA-1 hash value for the resource pack
|
||||
*/
|
||||
void sendResourcePack(String url, byte[] hash);
|
||||
default void sendResourcePack(String url, byte[] hash) {
|
||||
sendResourcePack(url, hash, false);
|
||||
}
|
||||
|
||||
/**
|
||||
* <strong>Note that this method does not send a plugin message to the server the player
|
||||
|
@ -891,11 +891,6 @@ public class ConnectedPlayer implements MinecraftConnectionAssociation, Player {
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sendResourcePack(String url, byte[] hash) {
|
||||
sendResourcePack(url, hash, false);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sends a {@link KeepAlive} packet to the player with a random ID.
|
||||
* The response will be ignored by Velocity as it will not match the
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren