Skip to content

Commit

Permalink
fix #104
Browse files Browse the repository at this point in the history
  • Loading branch information
RogueLogix committed Nov 9, 2024
1 parent c519bde commit 4e81dc3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public void validateStage2() throws ValidationException {
final var tile = blocks.getTile(x, i, z);

if (!(tile instanceof ReactorFuelRodTile)) {
throw new ValidationException(Component.translatable("multiblock.error.biggerreactors.fuel_rod_gap", controlRodPos.getX(), controlRodPos.getY() + (-1 - i), controlRodPos.getZ()));
throw new ValidationException(Component.translatable("multiblock.error.biggerreactors.fuel_rod_gap", controlRodPos.getX(), i, controlRodPos.getZ()));
}

((ReactorFuelRodTile) tile).lastCheckedTick = tick;
Expand Down

0 comments on commit 4e81dc3

Please sign in to comment.