Update to Minecraft 1.16.2

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2020-08-12 07:00:00 +10:00
parent 7278ee0293
commit 42b72d7c63
12 changed files with 136 additions and 98 deletions

View File

@@ -103,6 +103,10 @@ public class EntityTransformEvent extends EntityEvent implements Cancellable {
/**
* When a slime splits into multiple smaller slimes.
*/
SPLIT
SPLIT,
/**
* When reason is unknown.
*/
UNKNOWN
}
}

View File

@@ -38,7 +38,9 @@ public class PlayerPortalEvent extends PlayerTeleportEvent {
*
* @param searchRadius the radius in which to search for a portal from the
* location
* @deprecated not currently functional
*/
@Deprecated
public void setSearchRadius(int searchRadius) {
this.getSearchRadius = searchRadius;
}
@@ -68,7 +70,9 @@ public class PlayerPortalEvent extends PlayerTeleportEvent {
*
* @param canCreatePortal Sets whether there should be a destination portal
* created
* @deprecated not currently functional
*/
@Deprecated
public void setCanCreatePortal(boolean canCreatePortal) {
this.canCreatePortal = canCreatePortal;
}
@@ -85,7 +89,9 @@ public class PlayerPortalEvent extends PlayerTeleportEvent {
*
* @param creationRadius the radius in which to create a portal from the
* location
* @deprecated not currently functional
*/
@Deprecated
public void setCreationRadius(int creationRadius) {
this.creationRadius = creationRadius;
}