[This is preliminary documentation and is subject to change.]

Context of the block change. Multiple flags can be combined.

Namespace: fCraft
Assembly: fCraft (in fCraft.dll) Version: 0.6.3.5 (0.6.3.5)

Syntax

   
 C# 
[FlagsAttribute]
public enum BlockChangeContext

Members

MemberValueDescription
Unknown0
Default/unknown context.
Manual1
Block was manually edited, with a click. Opposite of Drawn.
Drawn2
Block was edited using a drawing operation. Opposite of Manual.
Replaced4
Block was replaced (using /paint, /r, /rn, /rb, or replace brush variations).
Pasted8
Block was pasted (using /paste, /pastenot, /px, or /pnx)
Cut16
Block was cut (using /cut).
UndoneSelf32
Undone a change previously made by same player (using /undo, /ua, or /up on self).
UndoneOther64
Undone a change previously made by another player (using /ua or /up).
Restored128
Block was inserted from another file (using /restore).
Filled256
Block was filled (using /fill2d or /fill3d).
Redone512
Redone, opposite of UndoneSelf/UndoneOther
PaintedCombo5
Combination of Manual and Replaced (as used by /Paint).
RedoneCombo546
Combination of Drawn, UndoneSelf, and Redone (as used by /Redo).

See Also