mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-25 02:04:44 +02:00
Release 6.11.0
This commit is contained in:
@ -31,7 +31,7 @@ public abstract class EntityEvent {
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* @since TODO
|
||||
* @since 6.11.0
|
||||
*/
|
||||
public EntityEvent(Entity entity) {
|
||||
this.entity = entity;
|
||||
@ -41,7 +41,7 @@ public abstract class EntityEvent {
|
||||
* Obtain the entity involved in the event
|
||||
*
|
||||
* @return Entity
|
||||
* @since TODO
|
||||
* @since 6.11.0
|
||||
*/
|
||||
public Entity getEntity() {
|
||||
return this.entity;
|
||||
@ -51,7 +51,7 @@ public abstract class EntityEvent {
|
||||
* Obtain the event's class name
|
||||
*
|
||||
* @return the event class name
|
||||
* @since TODO
|
||||
* @since 6.11.0
|
||||
*/
|
||||
@NonNull public String getEventName() {
|
||||
if (this.name == null) {
|
||||
|
@ -21,7 +21,7 @@ package com.plotsquared.core.events;
|
||||
import com.sk89q.worldedit.entity.Entity;
|
||||
|
||||
/**
|
||||
* @since TODO
|
||||
* @since 6.11.0
|
||||
*/
|
||||
public class RemoveRoadEntityEvent extends EntityEvent implements CancellablePlotEvent {
|
||||
|
||||
@ -31,7 +31,7 @@ public class RemoveRoadEntityEvent extends EntityEvent implements CancellablePlo
|
||||
* RemoveRoadEntityEvent: Called when an entity on road is removed.
|
||||
*
|
||||
* @param entity The entity to remove
|
||||
* @since TODO
|
||||
* @since 6.11.0
|
||||
*/
|
||||
public RemoveRoadEntityEvent(Entity entity) {
|
||||
super(entity);
|
||||
|
@ -494,7 +494,7 @@ public abstract class SchematicHandler {
|
||||
/**
|
||||
* The legacy web interface is deprecated for removal in favor of Arkitektonika.
|
||||
*/
|
||||
@Deprecated(forRemoval = true, since = "TODO")
|
||||
@Deprecated(forRemoval = true, since = "6.11.0")
|
||||
public List<String> getSaves(UUID uuid) {
|
||||
String rawJSON;
|
||||
try {
|
||||
|
@ -255,7 +255,7 @@ public abstract class WorldUtil {
|
||||
/**
|
||||
* The legacy web interface is deprecated for removal in favor of Arkitektonika.
|
||||
*/
|
||||
@Deprecated(forRemoval = true, since = "TODO")
|
||||
@Deprecated(forRemoval = true, since = "6.11.0")
|
||||
public void upload(
|
||||
final @NonNull Plot plot,
|
||||
final @Nullable UUID uuid,
|
||||
|
Reference in New Issue
Block a user