mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
Added self face
By: durron597 <martin.jared@gmail.com>
This commit is contained in:
parent
eff44b6a95
commit
3be4ecd28c
1 changed files with 2 additions and 1 deletions
|
@ -9,7 +9,8 @@ public enum BlockFace {
|
||||||
South(1, 0, 0),
|
South(1, 0, 0),
|
||||||
West(0, 0, 1),
|
West(0, 0, 1),
|
||||||
Up(0, 1, 0),
|
Up(0, 1, 0),
|
||||||
Down(0, -1, 0);
|
Down(0, -1, 0),
|
||||||
|
Self(0, 0, 0);
|
||||||
|
|
||||||
private final int modX;
|
private final int modX;
|
||||||
private final int modY;
|
private final int modY;
|
||||||
|
|
Loading…
Reference in a new issue