Skip to content

Commit 9ab78b1

Browse files
committed
Formatting
1 parent 5035852 commit 9ab78b1

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/main/java/net/swedz/tesseract/neoforge/compat/mi/hook/context/listener/HatchMIHookContext.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ public interface HatchModification<T>
4343
{
4444
void apply(T value, boolean input);
4545
}
46-
46+
4747
@SafeVarargs
4848
private void registerHatch(String id, String englishName, String overlayFolder, MachineCasing casing,
49-
Consumer<BlockWithItemHolder<?, ?>> modifyBlock,
50-
Consumer<BlockBehaviour.Properties> overrideProperties,
51-
boolean defaultMineableTags,
52-
HatchFactory factory,
53-
boolean input,
54-
Consumer<BlockEntityType<?>>... extraRegistrators)
49+
Consumer<BlockWithItemHolder<?, ?>> modifyBlock,
50+
Consumer<BlockBehaviour.Properties> overrideProperties,
51+
boolean defaultMineableTags,
52+
HatchFactory factory,
53+
boolean input,
54+
Consumer<BlockEntityType<?>>... extraRegistrators)
5555
{
5656
HackedMachineRegistrationHelper.registerMachine(hook, englishName, id, modifyBlock, overrideProperties, defaultMineableTags, (bep) -> factory.create(bep, input, hook.id(id)), extraRegistrators);
5757
HackedMachineRegistrationHelper.addMachineModel(hook, id, casing, overlayFolder, true, false, true, false);
@@ -65,7 +65,7 @@ public final void registerHatch(String id, String englishName, String overlayFol
6565
HatchFactory factory,
6666
Consumer<BlockEntityType<?>>... extraRegistrators)
6767
{
68-
registerHatch(id, englishName, overlayFolder, casing, modifyBlock, overrideProperties, defaultMineableTags, factory, false, extraRegistrators);
68+
this.registerHatch(id, englishName, overlayFolder, casing, modifyBlock, overrideProperties, defaultMineableTags, factory, false, extraRegistrators);
6969
}
7070

7171
@SafeVarargs

0 commit comments

Comments
 (0)