Skip to content

Commit

Permalink
Fix minor de-optimizing bug in stage reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
octylFractal committed Jul 19, 2019
1 parent 3d2b6ea commit 47559aa
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -218,7 +218,7 @@ public <B extends BlockStateHolder<B>> boolean setBlock(BlockVector3 location, B
return setDelegateBlock(location, block); return setDelegateBlock(location, block);
} }


BlockState existing = getBlock(location); BlockState existing = getExtent().getBlock(location);
PlacementPriority priority = getPlacementPriority(block); PlacementPriority priority = getPlacementPriority(block);
PlacementPriority srcPriority = getPlacementPriority(existing); PlacementPriority srcPriority = getPlacementPriority(existing);


Expand Down

0 comments on commit 47559aa

Please sign in to comment.