mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-25 02:04:44 +02:00
Add paper specific listener for limiting the amount of tile entities in a chunk during build, instead of just doing it during chunk unloading
This commit is contained in:
@ -446,6 +446,7 @@ public enum Captions implements Caption {
|
||||
NOT_VALID_PLOT_WORLD("$2That is not a valid plot area (case sensitive)", "Errors"),
|
||||
NO_PLOTS("$2You don't have any plots", "Errors"),
|
||||
WAIT_FOR_TIMER("$2A set block timer is bound to either the current plot or you. Please wait for it to finish", "Errors"),
|
||||
TILE_ENTITY_CAP_REACHED("$2The total number of tile entities in this chunk may not exceed $1%s", "Errors"),
|
||||
//</editor-fold>
|
||||
DEBUG_REPORT_CREATED("$1Uploaded a full debug to: $1%url%", "Paste"),
|
||||
PURGE_SUCCESS("$4Successfully purged %s plots", "Purge"),
|
||||
|
@ -484,6 +484,8 @@ public class Settings extends Config {
|
||||
public static boolean SPAWNER_SPAWN = true;
|
||||
@Comment("Cancel entity spawns from tick spawn rates before they happen (performance buff)")
|
||||
public static boolean CREATURE_SPAWN = true;
|
||||
@Comment("Check the tile entity limit on block placement")
|
||||
public static boolean TILE_ENTITY_CHECK = false;
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user