Skip to content

Commit

Permalink
Add an update side effect. Only for Bukkit for now
Browse files Browse the repository at this point in the history
  • Loading branch information
me4502 committed Aug 4, 2020
1 parent 3c402e4 commit d3ad1fc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Binary file modified worldedit-bukkit/src/main/resources/worldedit-adapters.jar
Binary file not shown.
Expand Up @@ -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);
Expand Down
2 changes: 2 additions & 0 deletions worldedit-core/src/main/resources/lang/strings.json
Expand Up @@ -398,6 +398,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",
Expand Down

0 comments on commit d3ad1fc

Please sign in to comment.