This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
EnergonRelics/src/main/java/com/thebrokenrail/energonrelics/block/entity/battery/ActiveBatteryControllerBlockEntity.java

15 lines
398 B
Java
Raw Normal View History

2020-07-13 20:37:21 +00:00
package com.thebrokenrail.energonrelics.block.entity.battery;
import net.minecraft.block.entity.BlockEntityType;
2020-07-14 01:49:40 +00:00
public class ActiveBatteryControllerBlockEntity extends PassiveBatteryControllerBlockEntity {
2020-07-13 20:37:21 +00:00
public ActiveBatteryControllerBlockEntity(BlockEntityType<?> type) {
super(type);
}
@Override
protected boolean isActiveController() {
return true;
}
}