Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
fixed transformers not being able to be rotated up
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Jul 29, 2023
1 parent 31c1a1f commit bfdffcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/main/java/muramasa/gregtech/data/Machines.java
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public class Machines {
/**
* Transformers
**/
public static BasicMachine TRANSFORMER = new BasicMachine(GTIRef.ID, "transformer").addFlags(ENERGY).overlayTexture(Textures.TIER_SPECIFIC_OVERLAY_HANDLER).setTile((v, pos, state) -> new TileEntityTransformer<>(v, pos, state, 1)).noCovers().allowFrontIO().setTooltipInfo((machine, stack, world, tooltip, flag) -> {
public static BasicMachine TRANSFORMER = new BasicMachine(GTIRef.ID, "transformer").addFlags(ENERGY).overlayTexture(Textures.TIER_SPECIFIC_OVERLAY_HANDLER).setTile((v, pos, state) -> new TileEntityTransformer<>(v, pos, state, 1)).noCovers().allowFrontIO().setAllowVerticalFacing(true).setTooltipInfo((machine, stack, world, tooltip, flag) -> {
tooltip.remove(tooltip.size() - 1);
tooltip.remove(tooltip.size() - 1);
Tier upper = Tier.getTier(machine.getTier().getVoltage() * 4);
Expand Down

0 comments on commit bfdffcc

Please sign in to comment.