Default to BlockFace.SELF for null directions in getFacing

By: Nathan Wolf <nathan@elmakers.com>
This commit is contained in:
CraftBukkit/Spigot 2015-05-22 19:42:09 -07:00
parent e5baf3afa5
commit 151cf48284

View File

@ -49,7 +49,9 @@ public class CraftHanging extends CraftEntity implements Hanging {
}
public BlockFace getFacing() {
switch (this.getHandle().direction) {
EnumDirection direction = this.getHandle().direction;
if (direction == null) return BlockFace.SELF;
switch (direction) {
case SOUTH:
default:
return BlockFace.SOUTH;