13
0
geforkt von Mirrors/Paper

Add EntityBlockStorage#clearEntities()

Dieser Commit ist enthalten in:
Owen1212055 2021-04-05 18:12:06 -04:00
Ursprung f4e92bc267
Commit b00a393416

Datei anzeigen

@ -53,4 +53,11 @@ public interface EntityBlockStorage<T extends Entity> extends TileState {
* @param entity Entity to add to the block
*/
void addEntity(@NotNull T entity);
// Paper start - Add EntityBlockStorage clearEntities
/**
* Clear all currently stored entities in the block.
*/
void clearEntities();
// Paper end
}