Skip to content

Commit

Permalink
couple of small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
desht committed Apr 25, 2024
1 parent 3bb59b0 commit b72b323
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ repositories {
maven {
name "FTB Maven"
url "https://maven.ftb.dev/releases/"
// content {
// includeGroup "dev.ftb.mods.ftb-filter-system"
// }
content {
includeGroup "dev.ftb.mods"
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,10 @@ public class ProgrammableControllerBlockEntity extends AbstractAirHandlingBlockE
private static final double BASE_SPEED = 0.15;

private final ProgrammableItemStackHandler inventory = new ProgrammableItemStackHandler(this);
// private final LazyOptional<IItemHandler> invCap = LazyOptional.of(() -> inventory);

private final FluidTank tank = new FluidTank(16000);
// private final LazyOptional<IFluidHandler> tankCap = LazyOptional.of(() -> tank);

private final PneumaticEnergyStorage energy = new PneumaticEnergyStorage(MAX_ENERGY);
// private final LazyOptional<IEnergyStorage> energyCap = LazyOptional.of(() -> energy);

private final DroneItemHandler droneItemHandler = new DroneItemHandler(this, 1);

Expand Down

0 comments on commit b72b323

Please sign in to comment.