Basic StationRocketEngineBlock functionality. StationFlightComputerBlock simply sets traveling to true. Rocket crash fixes. TEST

This commit is contained in:
XevianLight
2026-03-28 19:56:15 -06:00
parent 0f4b98a912
commit 341ed8a17d
38 changed files with 705 additions and 103 deletions

View File

@@ -0,0 +1,15 @@
package net.xevianlight.aphelion.block.custom;
import net.xevianlight.aphelion.block.custom.base.BaseRocketContainer;
import net.xevianlight.aphelion.block.custom.base.BaseRocketFuelTank;
public class BasicRocketContainer extends BaseRocketContainer {
public BasicRocketContainer(Properties properties) {
super(properties);
}
@Override
public int getSlotCapacity() {
return 9;
}
}