aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/forestry/HANDLER_FR.java
diff options
context:
space:
mode:
authorConnor-Colenso <52056774+Connor-Colenso@users.noreply.github.com>2023-10-18 17:03:23 +0100
committerGitHub <noreply@github.com>2023-10-18 18:03:23 +0200
commitfbdbb388c369fae549cfde3eed38b536f7461d90 (patch)
treeb46f7fc949d7e4c6e3be910b81ed725e6dc1648e /src/main/java/gtPlusPlus/xmod/forestry/HANDLER_FR.java
parentb670446fdf49991093b485f0aa14050039632775 (diff)
downloadGT5-Unofficial-fbdbb388c369fae549cfde3eed38b536f7461d90.tar.gz
GT5-Unofficial-fbdbb388c369fae549cfde3eed38b536f7461d90.tar.bz2
GT5-Unofficial-fbdbb388c369fae549cfde3eed38b536f7461d90.zip
Cleaning up (#767)
* Kill playerAPI * Gut more events and compat that is now obsolete * Remove commented out code * Remove final modifier from methods * Make more stuff final * Remove slow building ring * Protected -> private in final classes * More cleaning * More cleaning v2 * Purging * Clean DevHelper * Clean DevHelper 2 * delete DevHelper * remove useless IFMLLoadingPlugin.MCVersion annotation from @Mod files * check for obfuscation only once in the IFMLloadingPlugin.injectData * don't instantiate the static class ASMConfig * delete unused and empty implementation of IFMLCallHook * delete empty class * delete ClassesToTransform class that just holds the class names constants * delete unused methods and unsless logging in dummymod container * delete unused transformer ClassTransformer_TT_ThaumicRestorer * spotless * Clean * Clean utils * Build checkpoint * Purge * Stage 2 * Stage 3 * Stage 4 * Stage 5 * Stage 6 * Spotless * Imports * Stage idk * Stage 1 * Fix issue * Spotless * Format numbers --------- Co-authored-by: GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> Co-authored-by: Alexdoru <57050655+Alexdoru@users.noreply.github.com> Co-authored-by: Connor Colenso <colen@CONNORSPC>
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/forestry/HANDLER_FR.java')
-rw-r--r--src/main/java/gtPlusPlus/xmod/forestry/HANDLER_FR.java38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/forestry/HANDLER_FR.java b/src/main/java/gtPlusPlus/xmod/forestry/HANDLER_FR.java
index 0b9702acb1..80d1620f02 100644
--- a/src/main/java/gtPlusPlus/xmod/forestry/HANDLER_FR.java
+++ b/src/main/java/gtPlusPlus/xmod/forestry/HANDLER_FR.java
@@ -3,12 +3,7 @@ package gtPlusPlus.xmod.forestry;
import static gregtech.api.enums.Mods.ExtraTrees;
import static gregtech.api.enums.Mods.Forestry;
-import java.lang.reflect.InvocationTargetException;
-import java.lang.reflect.Method;
-
-import net.minecraft.block.Block;
import net.minecraft.item.ItemStack;
-import net.minecraft.world.World;
import binnie.extratrees.genetics.ExtraTreeSpecies;
import cpw.mods.fml.common.Optional;
@@ -43,39 +38,6 @@ public class HANDLER_FR {
}
}
- public static boolean createBlockBreakParticles(final World world, final int x, final int y, final int z,
- final Block block) {
- if (Forestry.isModLoaded()) {
- createBlockBreakParticles_INTERNAL(world, x, y, z, block);
- }
- return false;
- }
-
- @Optional.Method(modid = Mods.Names.FORESTRY)
- private static void createBlockBreakParticles_INTERNAL(final World world, final int x, final int y, final int z,
- final Block block) {
- if (Forestry.isModLoaded()) {
- Class oClass;
- try {
- oClass = ReflectionUtils.getClass("forestry.core.proxy.ProxyCommon");
- Object oProxy = ReflectionUtils.getField(oClass, "common");
- if (oProxy != null && oClass.isInstance(oProxy)) {
- Method mParticles = ReflectionUtils.getMethod(
- oClass,
- "addBlockDestroyEffects",
- World.class,
- int.class,
- int.class,
- int.class,
- Block.class,
- int.class);
- mParticles.invoke(oProxy, world, x, y, z, block, 0);
- }
- } catch (SecurityException | IllegalAccessException | IllegalArgumentException
- | InvocationTargetException e) {}
- }
- }
-
@Optional.Method(modid = Mods.Names.FORESTRY)
private static void mapForestrySaplingToLog() {
for (TreeDefinition value : TreeDefinition.values()) {