aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechRedstoneStrengthDisplay.java
blob: c8bee5c5c18b88569525b03d186df9e3027d075b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package gtPlusPlus.xmod.gregtech.registration.gregtech;

import gtPlusPlus.api.objects.Logger;
import gtPlusPlus.core.lib.CORE;
import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList;
import gtPlusPlus.xmod.gregtech.common.tileentities.redstone.GT_MetaTileEntity_RedstoneStrengthDisplay;

public class GregtechRedstoneStrengthDisplay {

    public static void run() {
        Logger.INFO("Gregtech5u Content | Registering Redstone Strength Display.");
        if (CORE.ConfigSwitches.enableMachine_RedstoneBlocks) {
            GregtechItemList.RedstoneStrengthDisplay.set(
                new GT_MetaTileEntity_RedstoneStrengthDisplay(
                    31804,
                    "redstone.display",
                    "Redstone Strength Display",
                    "Displays Redstone Strength").getStackForm(1L));
        }
    }
}