mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-29 15:49:00 +01:00
Add a missing return in Eigencraft redstone (#4621)
This commit is contained in:
parent
331d1ed71c
commit
eb2557d9ac
1 changed files with 1 additions and 0 deletions
|
@ -995,6 +995,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||||
+ private void updateSurroundingRedstone(World worldIn, BlockPosition pos, IBlockData state, BlockPosition source) {
|
+ private void updateSurroundingRedstone(World worldIn, BlockPosition pos, IBlockData state, BlockPosition source) {
|
||||||
+ if (worldIn.paperConfig.useEigencraftRedstone) {
|
+ if (worldIn.paperConfig.useEigencraftRedstone) {
|
||||||
+ turbo.updateSurroundingRedstone(worldIn, pos, state, source);
|
+ turbo.updateSurroundingRedstone(worldIn, pos, state, source);
|
||||||
|
+ return;
|
||||||
+ }
|
+ }
|
||||||
+ a(worldIn, pos, state);
|
+ a(worldIn, pos, state);
|
||||||
+ }
|
+ }
|
||||||
|
|
Loading…
Reference in a new issue