Rockets now support inventories. Fixed pad underside textures.

This commit is contained in:
XevianLight
2026-02-08 22:23:29 -07:00
parent bc8bb4ee05
commit 018886768e
19 changed files with 309 additions and 54 deletions

View File

@@ -0,0 +1,14 @@
package net.xevianlight.aphelion.block.custom;
import net.xevianlight.aphelion.block.custom.base.BaseRocketFuelTank;
public class BasicRocketFuelTank extends BaseRocketFuelTank {
public BasicRocketFuelTank(Properties properties) {
super(properties);
}
@Override
public int getFuelCapacity() {
return 1000;
}
}