Skip to content

Commit

Permalink
Fixed bugs and formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
ZiYueCommentary committed Aug 8, 2024
1 parent eabe666 commit 6b186e0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fabric/src/main/java/ziyue/tjmetro/mod/Reference.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package ziyue.tjmetro.mod;

/**
* References for <b>Tianjin Metro Mod</b>.
* References for Tianjin Metro Mod.
*
* @since 1.0.0-beta-1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import java.util.List;

// Screw this.
@Deprecated
public class BlockHighSpeedRepeater extends BlockExtension implements DirectionHelper
{
public static final BooleanProperty LOCKED = BooleanProperty.of("locked");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
public class BlockRailwaySignTianjinBMT extends BlockRailwaySignBase
{
public BlockRailwaySignTianjinBMT(int length, boolean isOdd) {
super(BlockHelper.createBlockSettings(false, state -> 0),length, isOdd);
super(BlockHelper.createBlockSettings(false, state -> 0), length, isOdd);
}

@Nonnull
Expand All @@ -41,7 +41,6 @@ public VoxelShape getOutlineShape2(BlockState state, BlockView world, BlockPos p
final VoxelShape pole = IBlock.getVoxelShapeByDirection(xStart - 2, 0, 7, xStart - 0.75, 16, 9, facing);
return VoxelShapes.union(main, pole);
}

}

@Nonnull
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class RenderAPGGlassTianjinBMT extends RenderRouteBase<BlockAPGGlassTianj
public static final float COLOR_STRIP_END = 15.5F / 16F;

public RenderAPGGlassTianjinBMT(Argument dispatcher) {
super(dispatcher, 4, 8F, 1F, 8, false, 2, BlockAPGGlass.ARROW_DIRECTION);
super(dispatcher, 4, 8F, 1F, 8, false, 2, BlockAPGGlassTianjinBMT.ARROW_DIRECTION);
}

@Override
Expand Down

0 comments on commit 6b186e0

Please sign in to comment.