4
4
* It is distributed under the Traincraft License (https://github.com/Traincraft/Traincraft/blob/master/LICENSE.md)
5
5
* You can find the source code at https://github.com/Traincraft/Traincraft
6
6
*
7
- * © 2011-2016
7
+ * © 2011-2017
8
8
*/
9
9
10
10
package si .meansoft .traincraft ;
27
27
/**
28
28
* @author canitzp
29
29
*/
30
- public class Registry {
30
+ public class Registry {
31
31
32
32
public static int entityIds = 0 ;
33
33
@@ -42,9 +42,9 @@ public class Registry{
42
42
43
43
public static FluidBase diesel , refinedFuel , oil ;
44
44
45
- public static void preInit (FMLPreInitializationEvent event ){
45
+ public static void preInit (FMLPreInitializationEvent event ) {
46
46
//Blocks
47
- register (oilSand = new BlockBase (Material .SAND , "oil_Sand " ).generateBlock (Blocks .SAND , 50 , 80 , 7 , 11 ).addOreDict ("oreOilSand" ).setHarvestLevel (BlockBase .ToolEnum .SHOVEL , 2 ).setSound (SoundType .SAND ));
47
+ register (oilSand = new BlockBase (Material .SAND , "oil_sand " ).generateBlock (Blocks .SAND , 50 , 80 , 12 , 3 ).addOreDict ("oreOilSand" ).setHarvestLevel (BlockBase .ToolEnum .SHOVEL , 2 ).setSound (SoundType .SAND ));
48
48
register (petroleum = new BlockBase (Material .ROCK , "ore_petroleum" ).generateBlock (Blocks .STONE , 20 , 70 , 5 , 9 ).addOreDict ("orePetroleum" ).setHarvestLevel (BlockBase .ToolEnum .PICKAXE , 2 ).setSound (SoundType .STONE ));
49
49
register (distillery = new BlockDistillery ());
50
50
register (hearthFurnace = new BlockHearthFurnace ());
@@ -63,20 +63,20 @@ public static void preInit(FMLPreInitializationEvent event){
63
63
TraincraftAPI .addTrackRegister (BlockTrackStraight .class , BlockTrackSlope .class , BlockTrackCurve .class );
64
64
TraincraftAPI .registerTracks ();
65
65
66
- register (TrainProvider .create (MuseumSteamTrain .class , "museumTrain" , new MuseumSteamTrainModel ()));
66
+ // register(TrainProvider.create(MuseumSteamTrain.class, "museumTrain", new MuseumSteamTrainModel()));
67
67
}
68
68
69
- public static <T extends IRegistryEntry > T [] register (T ... entries ){
70
- for (T entry : entries ){
71
- for (IRegistryEntry reg : entry .getRegisterElements ()){
72
- if (reg instanceof IForgeRegistryEntry ){
69
+ public static <T extends IRegistryEntry > T [] register (T ... entries ) {
70
+ for (T entry : entries ) {
71
+ for (IRegistryEntry reg : entry .getRegisterElements ()) {
72
+ if (reg instanceof IForgeRegistryEntry ) {
73
73
((IForgeRegistryEntry ) reg ).setRegistryName (new ResourceLocation (Traincraft .MODID , reg .getRegisterName ()));
74
74
GameRegistry .register ((IForgeRegistryEntry <?>) reg );
75
75
reg .onRegister (entries );
76
76
} else {
77
77
reg .ownRegistry ();
78
78
}
79
- if (Traincraft .loadedSide .isClient ()){
79
+ if (Traincraft .loadedSide .isClient ()) {
80
80
reg .loadClientSide ();
81
81
}
82
82
}
0 commit comments