From b4b5e9077704a4e7d8619e7cd0d527af0c828a72 Mon Sep 17 00:00:00 2001 From: Connor-Colenso <52056774+Connor-Colenso@users.noreply.github.com> Date: Thu, 9 Feb 2023 07:17:17 +0000 Subject: Fix immature alk code (#535) * Remove immature code * Remove even more immature code * spotlessApply (#536) Co-authored-by: GitHub GTNH Actions <> --------- Co-authored-by: GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- src/main/java/gtPlusPlus/core/common/CommonProxy.java | 6 +----- src/main/java/gtPlusPlus/core/common/compat/COMPAT_IC2.java | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) (limited to 'src/main/java/gtPlusPlus/core/common') diff --git a/src/main/java/gtPlusPlus/core/common/CommonProxy.java b/src/main/java/gtPlusPlus/core/common/CommonProxy.java index 19cf2d8356..6d1d7bbf08 100644 --- a/src/main/java/gtPlusPlus/core/common/CommonProxy.java +++ b/src/main/java/gtPlusPlus/core/common/CommonProxy.java @@ -120,15 +120,11 @@ public class CommonProxy { // Handles Magic Feather Utils.registerEvent(ModItems.itemMagicFeather); - if (CORE.DEVENV) { - Utils.registerEvent(new StopAnnoyingFuckingAchievements()); - } - Utils.registerEvent(new EnderDragonDeathHandler()); Utils.registerEvent(new EntityDeathHandler()); if (ConfigSwitches.disableZombieReinforcement) { - // Make Zombie reinforcements fuck off. + // Make Zombie reinforcements stop showing up. Utils.registerEvent(new ZombieBackupSpawnEventHandler()); } diff --git a/src/main/java/gtPlusPlus/core/common/compat/COMPAT_IC2.java b/src/main/java/gtPlusPlus/core/common/compat/COMPAT_IC2.java index 357647c83e..2a08956e2e 100644 --- a/src/main/java/gtPlusPlus/core/common/compat/COMPAT_IC2.java +++ b/src/main/java/gtPlusPlus/core/common/compat/COMPAT_IC2.java @@ -49,7 +49,7 @@ public class COMPAT_IC2 { if (ConfigSwitches.disableIC2Recipes) { - // Fuck these right off. + // Remove these. RemoveRecipeQueue.add("IC2:itemCable"); RemoveRecipeQueue.add("IC2:itemCable:1"); RemoveRecipeQueue.add("IC2:itemCable:2"); -- cgit