CC: Tweaked

CC: Tweaked

42M Downloads

Computer power button is inverted

BomberPlayz opened this issue · 1 comments

commented

Minecraft Version

1.19.x

Version

1.104.0

Details

The problem:

When a computer is on, the power button shows as if it is off, and the tooltip on it is "Turn this computer on", but when a computer is off, it shows as if it is on (with the tooltip for a computer that is on).
Here are two screenshots below about it:
kép
kép

To reproduce:

Simply go into a computer on the server. You will see that the power button is inverted.

Expected behavior:

When the computer is off, the power buttons shows that it is off, instead of showing like it is on, and vica versa.

commented

Source:

var turnOn = new HintedMessage(
Component.translatable("gui.computercraft.tooltip.turn_off"),
Component.translatable("gui.computercraft.tooltip.turn_off.key")
);
var turnOff = new HintedMessage(Component.translatable("gui.computercraft.tooltip.turn_on"), (Component) null);

PR planted soon™