[This is preliminary documentation and is subject to change.]
Context of the block change. Multiple flags can be combined.
Namespace: fCraftAssembly: fCraft (in fCraft.dll) Version: 0.6.3.5 (0.6.3.5)
Syntax
| C# |
[FlagsAttribute] public enum BlockChangeContext
Members
| Member | Value | Description |
|---|---|---|
| Unknown | 0 | Default/unknown context. |
| Manual | 1 | Block was manually edited, with a click. Opposite of Drawn. |
| Drawn | 2 | Block was edited using a drawing operation. Opposite of Manual. |
| Replaced | 4 | Block was replaced (using /paint, /r, /rn, /rb, or replace brush variations). |
| Pasted | 8 | Block was pasted (using /paste, /pastenot, /px, or /pnx) |
| Cut | 16 | Block was cut (using /cut). |
| UndoneSelf | 32 | Undone a change previously made by same player (using /undo, /ua, or /up on self). |
| UndoneOther | 64 | Undone a change previously made by another player (using /ua or /up). |
| Restored | 128 | Block was inserted from another file (using /restore). |
| Filled | 256 | Block was filled (using /fill2d or /fill3d). |
| Redone | 512 | Redone, opposite of UndoneSelf/UndoneOther |
| PaintedCombo | 5 | Combination of Manual and Replaced (as used by /Paint). |
| RedoneCombo | 546 | Combination of Drawn, UndoneSelf, and Redone (as used by /Redo). |