mirror of
https://github.com/XevianLight/Aphelion.git
synced 2026-05-11 01:50:56 +01:00
Basic StationRocketEngineBlock functionality. StationFlightComputerBlock simply sets traveling to true. Rocket crash fixes. TEST
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user