forked from mirrors/NBTExplorer
Fixes to data enums
This commit is contained in:
parent
b5512934d6
commit
e2e558b8be
1 changed files with 8 additions and 1 deletions
|
@ -267,7 +267,7 @@ namespace Substrate
|
||||||
HEAD = 0x08,
|
HEAD = 0x08,
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum RepeaterOriengation
|
public enum RepeaterOrientation
|
||||||
{
|
{
|
||||||
EAST = 0,
|
EAST = 0,
|
||||||
SOUTH = 1,
|
SOUTH = 1,
|
||||||
|
@ -298,8 +298,15 @@ namespace Substrate
|
||||||
NORTH = 3,
|
NORTH = 3,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Flags]
|
||||||
|
public enum TrapdoorState
|
||||||
|
{
|
||||||
|
SWUNG = 0x04,
|
||||||
|
}
|
||||||
|
|
||||||
public enum PistonOrientation
|
public enum PistonOrientation
|
||||||
{
|
{
|
||||||
|
DOWN = 0,
|
||||||
UP = 1,
|
UP = 1,
|
||||||
EAST = 2,
|
EAST = 2,
|
||||||
WEST = 3,
|
WEST = 3,
|
||||||
|
|
Loading…
Reference in a new issue