blob: a6b6277e9d5f9be8ee50324b14ad1725b11d7671 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
package miscutil.gregtech.init;
import static miscutil.core.lib.LoadedMods.Gregtech;
import miscutil.core.util.Utils;
import miscutil.gregtech.init.machines.GregtechConduits;
import miscutil.gregtech.init.machines.GregtechEnergyBuffer;
import miscutil.gregtech.init.machines.GregtechSafeBlock;
import miscutil.gregtech.init.machines.GregtechSteamCondenser;
public class InitGregtech {
public static void run() {
if (Gregtech) {
Utils.LOG_INFO("MiscUtils: Gregtech5u Content | Registering Meta-TileEntities.");
}
/***
* Load up Blocks classes
***/
// Machines
// GregtechCobbleGenerator.run(); TODO - Weird Textures
GregtechEnergyBuffer.run();
GregtechConduits.run();
GregtechSteamCondenser.run();
GregtechSafeBlock.run();
}
}
|