diff options
| author | Technus <daniel112092@gmail.com> | 2017-12-26 11:57:39 +0100 |
|---|---|---|
| committer | Technus <daniel112092@gmail.com> | 2017-12-26 11:57:39 +0100 |
| commit | 347f653614c77072b1317b2cb0880284b55551a3 (patch) | |
| tree | eba01c78c14791eac09f124894428a59961c011e /src/main/java/com | |
| parent | 2969bb7b54e2a09859897af4312a74f91518e00f (diff) | |
| download | GT5-Unofficial-347f653614c77072b1317b2cb0880284b55551a3.tar.gz GT5-Unofficial-347f653614c77072b1317b2cb0880284b55551a3.tar.bz2 GT5-Unofficial-347f653614c77072b1317b2cb0880284b55551a3.zip | |
Code cleanup
Diffstat (limited to 'src/main/java/com')
99 files changed, 1282 insertions, 1219 deletions
diff --git a/src/main/java/com/github/technus/tectech/CommonValues.java b/src/main/java/com/github/technus/tectech/CommonValues.java index fb5b04f63d..0c49f98655 100644 --- a/src/main/java/com/github/technus/tectech/CommonValues.java +++ b/src/main/java/com/github/technus/tectech/CommonValues.java @@ -6,26 +6,26 @@ import net.minecraft.util.EnumChatFormatting; * Created by danie_000 on 11.01.2017. */ public final class CommonValues { - public final static String TEC_MARK_GENERAL = + public static final String TEC_MARK_GENERAL = EnumChatFormatting.BLUE + "Tec" + EnumChatFormatting.DARK_BLUE + "Tech" + EnumChatFormatting.BLUE + ": Interdimensional"; - public final static String TEC_MARK_EM = + public static final String TEC_MARK_EM = EnumChatFormatting.BLUE + "Tec" + EnumChatFormatting.DARK_BLUE + "Tech" + EnumChatFormatting.BLUE + ": Elemental Matter"; - public final static String BASS_MARK = + public static final String BASS_MARK = EnumChatFormatting.BLUE + "Tec" + EnumChatFormatting.DARK_BLUE + "Tech" + EnumChatFormatting.BLUE + ": Theta Movement"; - public final static byte DECAY_AT = 0;// hatches compute decays - public final static byte MULTI_PURGE_1_AT = 2;// multiblocks clean their hatches 1 - public final static byte MOVE_AT = 4;// move stuff around - public final static byte RECIPE_AT = 6;// move stuff around - public final static byte MULTI_PURGE_2_AT = 8;// multiblocks clean their hatches 2 - public final static byte OVERFLOW_AT = 10;// then hatches clean themselves + public static final byte DECAY_AT = 0;// hatches compute decays + public static final byte MULTI_PURGE_1_AT = 2;// multiblocks clean their hatches 1 + public static final byte MOVE_AT = 4;// move stuff around |
