Skip to content

Commit d9d14c5

Browse files
committed
Fix project name
1 parent 391ea0b commit d9d14c5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.idea/.name

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/resources/forge-1.19.4/procedures/block_fluidtank_fill.java.ftl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
if (_ent != null)
77
_ent.getCapability(ForgeCapabilities.FLUID_HANDLER, ${input$direction}).ifPresent(capability -> {
88
int _amount = ${opt.toInt(input$amount)};
9-
capability.fill(new FluidStack(${generator.map(field$fluid, "fluids")}, _amount), IFluidHandler.FluidAction.EXECUTE)
9+
capability.fill(new FluidStack(${generator.map(field$fluid, "fluids")}, _amount), IFluidHandler.FluidAction.EXECUTE);
1010
});
1111
}
1212
<#-- @formatter:on -->

0 commit comments

Comments
 (0)