mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-23 08:46:44 +01:00
SPIGOT-3532: Inverted skull directions
By: md_5 <git@md-5.net>
This commit is contained in:
parent
67dcd3fc2d
commit
3fdb71844b
1 changed files with 4 additions and 4 deletions
|
@ -67,7 +67,7 @@ public class Skull extends MaterialData implements Directional {
|
|||
data = 0x2;
|
||||
break;
|
||||
|
||||
case EAST:
|
||||
case WEST:
|
||||
data = 0x4;
|
||||
break;
|
||||
|
||||
|
@ -75,7 +75,7 @@ public class Skull extends MaterialData implements Directional {
|
|||
data = 0x3;
|
||||
break;
|
||||
|
||||
case WEST:
|
||||
case EAST:
|
||||
data = 0x5;
|
||||
}
|
||||
|
||||
|
@ -97,10 +97,10 @@ public class Skull extends MaterialData implements Directional {
|
|||
return BlockFace.SOUTH;
|
||||
|
||||
case 0x4:
|
||||
return BlockFace.EAST;
|
||||
return BlockFace.WEST;
|
||||
|
||||
case 0x5:
|
||||
return BlockFace.WEST;
|
||||
return BlockFace.EAST;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue