Skip to content

Commit

Permalink
Fix Easy PlacementHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
sakura-ryoko committed Dec 11, 2024
1 parent cc85a36 commit aece286
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,8 @@ public static <T extends Comparable<T>> BlockState applyPlacementProtocolV3(Bloc
{
for (Property<?> p : propList)
{
if (((p instanceof EnumProperty<?> ep) && ep.getType().equals(Direction.class) == false) &&
//if (((p instanceof EnumProperty<?> ep) && ep.getType().equals(Direction.class) == false) &&
if (property.isPresent() && !property.get().equals(p) &&
WHITELISTED_PROPERTIES.contains(p))
{
@SuppressWarnings("unchecked")
Expand Down

0 comments on commit aece286

Please sign in to comment.