Ad Astra: Giselle Addon

Ad Astra: Giselle Addon

16M Downloads

[Bug]: can't start server

233laoliu opened this issue ยท 1 comments

commented

Minecraft Version

1.20.1

Mod Loader and Version

Fabric loader version: 0.16.5

Ad Astra! Version

1.15.18

Addon Mod Version (This Mod)

6.5

The details

https://mclo.gs/DvYAWKw
https://mclo.gs/N79RHJU

commented

Fuel Loader was called Ad Astra's method, and exception was throwned at there.
So, This is meaning Ad astra can occured same issue with this. (FuelRefinery, OxygenLoader, OxygenDistributor)
Can you report this to Ad Astra devs first?

public void tickSideInteractions(BlockPos pos, Predicate<Direction> filter, List<ConfigurationEntry> sideConfig)
{
super.tickSideInteractions(pos, filter, sideConfig);
TransferUtils.pushItemsNearby(this, pos, FLUID_SOURCE_SLOTS, sideConfig.get(0), filter);
TransferUtils.pullItemsNearby(this, pos, FLUID_SOURCE_SLOTS, sideConfig.get(0), filter);
TransferUtils.pushItemsNearby(this, pos, FLUID_SINK_SLOTS, sideConfig.get(1), filter);
TransferUtils.pullItemsNearby(this, pos, FLUID_SINK_SLOTS, sideConfig.get(1), filter);
WrappedBlockFluidContainer fluidContainer = this.getFluidContainer();
long fluidCapacity = FluidConstants.fromMillibuckets(MachinesConfig.FUEL_LOADER_FLUID_CAPACITY);
TransferUtils.pushFluidNearby(this, pos, fluidContainer, fluidCapacity, 0, sideConfig.get(2), filter);
TransferUtils.pullFluidNearby(this, pos, fluidContainer, fluidCapacity, 0, sideConfig.get(2), filter);
}

https://github.com/terrarium-earth/Ad-Astra/blob/716159d80c79585a35c6a1fa8853baa1eb853c98/common/src/main/java/earth/terrarium/adastra/common/utils/TransferUtils.java#L78-L95