aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/thermalfoundation/block
diff options
context:
space:
mode:
authorNotAPenguin <michiel.vandeginste@gmail.com>2024-09-02 23:17:17 +0200
committerGitHub <noreply@github.com>2024-09-02 23:17:17 +0200
commit1b820de08a05070909a267e17f033fcf58ac8710 (patch)
tree02831a025986a06b20f87e5bcc69d1e0c639a342 /src/main/java/gtPlusPlus/xmod/thermalfoundation/block
parentafd3fd92b6a6ab9ab0d0dc3214e6bc8ff7a86c9b (diff)
downloadGT5-Unofficial-1b820de08a05070909a267e17f033fcf58ac8710.tar.gz
GT5-Unofficial-1b820de08a05070909a267e17f033fcf58ac8710.tar.bz2
GT5-Unofficial-1b820de08a05070909a267e17f033fcf58ac8710.zip
The Great Renaming (#3014)
* move kekztech to a single root dir * move detrav to a single root dir * move gtnh-lanthanides to a single root dir * move tectech and delete some gross reflection in gt++ * remove more reflection inside gt5u * delete more reflection in gt++ * fix imports * move bartworks and bwcrossmod * fix proxies * move galactigreg and ggfab * move gtneioreplugin * try to fix gt++ bee loader * apply the rename rules to BW * apply rename rules to bwcrossmod * apply rename rules to detrav scanner mod * apply rename rules to galacticgreg * apply rename rules to ggfab * apply rename rules to goodgenerator * apply rename rules to gtnh-lanthanides * apply rename rules to gt++ * apply rename rules to kekztech * apply rename rules to kubatech * apply rename rules to tectech * apply rename rules to gt apply the rename rules to gt * fix tt import * fix mui hopefully * fix coremod except intergalactic * rename assline recipe class * fix a class name i stumbled on * rename StructureUtility to GTStructureUtility to prevent conflict with structurelib * temporary rename of GTTooltipDataCache to old name * fix gt client/server proxy names
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/thermalfoundation/block')
-rw-r--r--src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidCryotheum.java (renamed from src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TF_Block_Fluid_Cryotheum.java)10
-rw-r--r--src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidEnder.java (renamed from src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TF_Block_Fluid_Ender.java)10
-rw-r--r--src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidPyrotheum.java (renamed from src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TF_Block_Fluid_Pyrotheum.java)10
-rw-r--r--src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlocks.java (renamed from src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TF_Blocks.java)8
4 files changed, 19 insertions, 19 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TF_Block_Fluid_Cryotheum.java b/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidCryotheum.java
index b48be445e5..0fefa79686 100644
--- a/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TF_Block_Fluid_Cryotheum.java
+++ b/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidCryotheum.java
@@ -26,16 +26,16 @@ import cofh.lib.util.BlockWrapper;
import cofh.lib.util.helpers.DamageHelper;
import cofh.lib.util.helpers.ServerHelper;
import cpw.mods.fml.common.registry.GameRegistry;
-import gtPlusPlus.xmod.thermalfoundation.fluid.TF_Fluids;
+import gtPlusPlus.xmod.thermalfoundation.fluid.TFFluids;
-public class TF_Block_Fluid_Cryotheum extends BlockFluidInteractive {
+public class TFBlockFluidCryotheum extends BlockFluidInteractive {
public static final Material materialFluidCryotheum = new MaterialLiquid(MapColor.iceColor);
private static boolean enableSourceFall = true;
private static boolean effect = true;
- public TF_Block_Fluid_Cryotheum() {
- super(GTPlusPlus.ID, TF_Fluids.fluidCryotheum, materialFluidCryotheum, "cryotheum");
+ public TFBlockFluidCryotheum() {
+ super(GTPlusPlus.ID, TFFluids.fluidCryotheum, materialFluidCryotheum, "cryotheum");
this.setQuantaPerBlock(5);
this.setTickRate(15);
@@ -116,7 +116,7 @@ public class TF_Block_Fluid_Cryotheum extends BlockFluidInteractive {
@Override
public int getLightValue(final IBlockAccess paramIBlockAccess, final int paramInt1, final int paramInt2,
final int paramInt3) {
- return TF_Fluids.fluidCryotheum.getLuminosity();
+ return TFFluids.fluidCryotheum.getLuminosity();
}
@Override
diff --git a/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TF_Block_Fluid_Ender.java b/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidEnder.java
index 9f89d01250..1f7c1fec93 100644
--- a/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TF_Block_Fluid_Ender.java
+++ b/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidEnder.java
@@ -12,15 +12,15 @@ import net.minecraft.world.World;
import cofh.core.fluid.BlockFluidCoFHBase;
import cofh.core.util.CoreUtils;
import cpw.mods.fml.common.registry.GameRegistry;
-import gtPlusPlus.xmod.thermalfoundation.fluid.TF_Fluids;
+import gtPlusPlus.xmod.thermalfoundation.fluid.TFFluids;
-public class TF_Block_Fluid_Ender extends BlockFluidCoFHBase {
+public class TFBlockFluidEnder extends BlockFluidCoFHBase {
public static final Material materialFluidEnder = new MaterialLiquid(MapColor.greenColor);
private static boolean effect = true;
- public TF_Block_Fluid_Ender() {
- super(GTPlusPlus.ID, TF_Fluids.fluidEnder, materialFluidEnder, "ender");
+ public TFBlockFluidEnder() {
+ super(GTPlusPlus.ID, TFFluids.fluidEnder, materialFluidEnder, "ender");
setQuantaPerBlock(4);
setTickRate(20);
@@ -56,6 +56,6 @@ public class TF_Block_Fluid_Ender extends BlockFluidCoFHBase {
@Override
public int getLightValue(IBlockAccess paramIBlockAccess, int paramInt1, int paramInt2, int paramInt3) {
- return TF_Fluids.fluidEnder.getLuminosity();
+ return TFFluids.fluidEnder.getLuminosity();
}
}
diff --git a/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TF_Block_Fluid_Pyrotheum.java b/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidPyrotheum.java
index 90c8be8bf7..1014667355 100644
--- a/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TF_Block_Fluid_Pyrotheum.java
+++ b/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidPyrotheum.java
@@ -18,16 +18,16 @@ import cofh.core.fluid.BlockFluidInteractive;
import cofh.lib.util.BlockWrapper;
import cofh.lib.util.helpers.ServerHelper;
import cpw.mods.fml.common.registry.GameRegistry;
-import gtPlusPlus.xmod.thermalfoundation.fluid.TF_Fluids;
+import gtPlusPlus.xmod.thermalfoundation.fluid.TFFluids;
-public class TF_Block_Fluid_Pyrotheum extends BlockFluidInteractive {
+public class TFBlockFluidPyrotheum extends BlockFluidInteractive {
Random random = new Random();
private static boolean effect = true;
private static boolean enableSourceFall = true;
- public TF_Block_Fluid_Pyrotheum() {
- super(GTPlusPlus.ID, TF_Fluids.fluidPyrotheum, Material.lava, "pyrotheum");
+ public TFBlockFluidPyrotheum() {
+ super(GTPlusPlus.ID, TFFluids.fluidPyrotheum, Material.lava, "pyrotheum");
this.setQuantaPerBlock(5);
this.setTickRate(10);
@@ -89,7 +89,7 @@ public class TF_Block_Fluid_Pyrotheum extends BlockFluidInteractive {
@Override
public int getLightValue(final IBlockAccess paramIBlockAccess, final int paramInt1, final int paramInt2,
final int paramInt3) {
- return TF_Fluids.fluidPyrotheum.getLuminosity();
+ return TFFluids.fluidPyrotheum.getLuminosity();
}
@Override
diff --git a/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TF_Blocks.java b/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlocks.java
index 38fed4c137..4e238ae5f5 100644
--- a/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TF_Blocks.java
+++ b/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlocks.java
@@ -2,16 +2,16 @@ package gtPlusPlus.xmod.thermalfoundation.block;
import cofh.core.fluid.BlockFluidCoFHBase;
-public class TF_Blocks {
+public class TFBlocks {
public static BlockFluidCoFHBase blockFluidPyrotheum;
public static BlockFluidCoFHBase blockFluidCryotheum;
public static BlockFluidCoFHBase blockFluidEnder;
public static void preInit() {
- blockFluidPyrotheum = new TF_Block_Fluid_Pyrotheum();
- blockFluidCryotheum = new TF_Block_Fluid_Cryotheum();
- blockFluidEnder = new TF_Block_Fluid_Ender();
+ blockFluidPyrotheum = new TFBlockFluidPyrotheum();
+ blockFluidCryotheum = new TFBlockFluidCryotheum();
+ blockFluidEnder = new TFBlockFluidEnder();
blockFluidPyrotheum.preInit();
blockFluidCryotheum.preInit();
blockFluidEnder.preInit();