Skip to content

Commit

Permalink
feat: 66% faster asphalt
Browse files Browse the repository at this point in the history
  • Loading branch information
bruberu committed Dec 12, 2024
1 parent f27cf18 commit e2b1a03
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/supersymmetry/common/blocks/SuSyBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
import java.util.Map;
import java.util.stream.Collectors;

import static gregtech.common.blocks.MetaBlocks.ASPHALT;

public class SuSyBlocks {

public static BlockCoolingCoil COOLING_COIL;
Expand Down Expand Up @@ -167,6 +169,9 @@ public static void registerWalkingSpeedBonus() {
for (IBlockState state : block.getBlockState().getValidStates())
BlockUtility.setWalkingSpeedBonus(state, block.getWalkingSpeed());
}
for (IBlockState state : ASPHALT.getBlockState().getValidStates()) {
BlockUtility.setWalkingSpeedBonus(state, 1); // Buff from 0.6F
}
}

@SuppressWarnings("unchecked")
Expand Down

0 comments on commit e2b1a03

Please sign in to comment.