Add an update side effect. Only for Bukkit for now

This commit is contained in:
Matthew Miller 2020-08-04 21:26:43 +10:00
parent 5e5f1c21e0
commit 05014b1fc9
3 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,7 @@
public enum SideEffect {
LIGHTING(State.ON),
NEIGHBORS(State.ON),
UPDATE(State.ON),
VALIDATION(State.OFF),
ENTITY_AI(State.OFF),
EVENTS(State.OFF);

View File

@ -399,6 +399,8 @@
"worldedit.sideeffect.lighting.description": "Updates block lighting",
"worldedit.sideeffect.neighbors": "Neighbors",
"worldedit.sideeffect.neighbors.description": "Notifies nearby blocks of changes",
"worldedit.sideeffect.update": "Update",
"worldedit.sideeffect.update.description": "Notifies the changed block",
"worldedit.sideeffect.validation": "Validation",
"worldedit.sideeffect.validation.description": "Validates and fixes inconsistent world state, such as disconnected blocks",
"worldedit.sideeffect.entity_ai": "Entity AI",