1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-02-17 18:47:40 +01:00

Added self face

By: durron597 <martin.jared@gmail.com>
This commit is contained in:
Bukkit/Spigot 2010-12-31 09:10:31 -05:00
parent eff44b6a95
commit 3be4ecd28c

View file

@ -9,7 +9,8 @@ public enum BlockFace {
South(1, 0, 0),
West(0, 0, 1),
Up(0, 1, 0),
Down(0, -1, 0);
Down(0, -1, 0),
Self(0, 0, 0);
private final int modX;
private final int modY;