Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion common/buildcraft/robotics/BCRobotics.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ public static void preInit(FMLConstructModEvent evt) {
}

BCRoboticsBlocks.preInit();
BCRoboticsPlugs.preInit();
BCRoboticsItems.preInit();
BCRoboticsStatements.preInit();
BCRoboticsEntities.preInit();
Expand Down
2 changes: 1 addition & 1 deletion common/buildcraft/robotics/BCRoboticsPlugs.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public class BCRoboticsPlugs {
public static PluggableDefinition robotStation;

public static void preInit() {
static {
robotStation = register("robot_station", PluggableRobotStation::new, PluggableRobotStation::new);
}

Expand Down
1 change: 0 additions & 1 deletion common/buildcraft/silicon/BCSilicon.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ public static void preInit(FMLConstructModEvent evt) {

BCSiliconConfig.preInit();
BCSiliconBlocks.preInit();
BCSiliconPlugs.preInit();
BCSiliconItems.preInit();
BCSiliconStatements.preInit();

Expand Down
2 changes: 1 addition & 1 deletion common/buildcraft/silicon/BCSiliconPlugs.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class BCSiliconPlugs {
public static PluggableDefinition timer;
public static PluggableDefinition facade;

public static void preInit() {
static {
gate = register("gate", PluggableGate::new, PluggableGate::new);
lens = register("lens", PluggableLens::new, PluggableLens::new);
pulsar = register("pulsar", PluggablePulsar::new, PluggablePulsar::new);
Expand Down
1 change: 0 additions & 1 deletion common/buildcraft/transport/BCTransport.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ public static void preInit(FMLConstructModEvent evt) {
BCTransportConfig.preInit();
BCTransportBlocks.preInit();
BCTransportPipes.preInit();
BCTransportPlugs.preInit();
BCTransportItems.preInit();
BCTransportStatements.preInit();

Expand Down
2 changes: 1 addition & 1 deletion common/buildcraft/transport/BCTransportPlugs.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class BCTransportPlugs {
public static PluggableDefinition blocker;
public static PluggableDefinition powerAdaptor;

public static void preInit() {
static {
blocker = register("blocker", PluggableBlocker::new);
powerAdaptor = register("power_adaptor", PluggablePowerAdaptor::new);
}
Expand Down