• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In
Build has been canceled!

CyclopsMC / IntegratedDynamics / 16552051255

27 Jul 2025 01:58PM UTC coverage: 53.206% (+8.0%) from 45.161%
16552051255

push

github

rubensworks
Resolve minor TODOs

2888 of 8740 branches covered (33.04%)

Branch coverage included in aggregate %.

17341 of 29280 relevant lines covered (59.22%)

3.08 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

80.0
/src/main/java/org/cyclops/integrateddynamics/block/BlockEnergyBattery.java
1
package org.cyclops.integrateddynamics.block;
2

3
import com.mojang.serialization.MapCodec;
4
import net.minecraft.world.level.block.BaseEntityBlock;
5
import net.minecraft.world.level.block.Block;
6

7
/**
8
 * A block that can hold defined variables so that they can be referred to elsewhere in the network.
9
 *
10
 * @author rubensworks
11
 */
12
public class BlockEnergyBattery extends BlockEnergyBatteryBase {
13

14
    public static final MapCodec<BlockEnergyBattery> CODEC = simpleCodec(BlockEnergyBattery::new);
4✔
15

16
    public BlockEnergyBattery(Block.Properties properties) {
17
        super(properties);
3✔
18
    }
1✔
19

20
    @Override
21
    protected MapCodec<? extends BaseEntityBlock> codec() {
22
        return CODEC;
×
23
    }
24

25
    public boolean isCreative() {
26
        return false;
2✔
27
    }
28

29
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc