mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-02-05 09:54:59 +01:00
parent
c013173265
commit
f6a4851140
1 changed files with 3 additions and 3 deletions
|
@ -300,6 +300,9 @@ public class DeployerHandler {
|
||||||
return;
|
return;
|
||||||
if (useItem == DENY)
|
if (useItem == DENY)
|
||||||
return;
|
return;
|
||||||
|
if (item instanceof BlockItem && !(item instanceof CartAssemblerBlockItem)
|
||||||
|
&& !clickedState.canBeReplaced(new BlockPlaceContext(itemusecontext)))
|
||||||
|
return;
|
||||||
|
|
||||||
// Reposition fire placement for convenience
|
// Reposition fire placement for convenience
|
||||||
if (item == Items.FLINT_AND_STEEL) {
|
if (item == Items.FLINT_AND_STEEL) {
|
||||||
|
@ -322,9 +325,6 @@ public class DeployerHandler {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item instanceof BlockItem && !(item instanceof CartAssemblerBlockItem)
|
|
||||||
&& !clickedState.canBeReplaced(new BlockPlaceContext(itemusecontext)))
|
|
||||||
return;
|
|
||||||
if (item == Items.ENDER_PEARL)
|
if (item == Items.ENDER_PEARL)
|
||||||
return;
|
return;
|
||||||
if (AllItemTags.DEPLOYABLE_DRINK.matches(item))
|
if (AllItemTags.DEPLOYABLE_DRINK.matches(item))
|
||||||
|
|
Loading…
Reference in a new issue