Skip to content

Commit

Permalink
Remove Forestry mod tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
ACGaming committed Nov 7, 2024
1 parent d59c583 commit 8e82bdf
Show file tree
Hide file tree
Showing 12 changed files with 2 additions and 212 deletions.
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,9 +347,6 @@ All changes are toggleable via config files.
* **Downgrade Potion Recipes Log Level:** Downgrades the message when creating a potion recipe from info to a debug
* **Forestry**
* **Arborist Villager Trades:** Adds custom emerald to germling trades to the arborist villager
* **Disable Bee Damage Armor Bypass:** Disables damage caused by bees bypassing player armor
* **Duplication Fixes:** Fixes various duplication exploits
* **Replanting Cocoa Beans:** Allows Forestry farms to automatically replant cocoa beans
* **HWYLA**
* **Keybindings Fix:** Fixes crashes in all menus when changing HWYLA keybindings to unsupported values
* **In Control!**
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ modGroup = mod.acgaming.universaltweaks

# Version of your mod.
# This field can be left empty if you want your mod's version to be determined by the latest git tag instead.
modVersion = 1.13.0
modVersion = 1.13.1

# Whether to use the old jar naming structure (modid-mcversion-version) instead of the new version (modid-version)
includeMCVersionJar = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -621,29 +621,10 @@ public static class ForestryCategory
})
public String[] utFOArboristDeals = new String[] {};

@Config.RequiresMcRestart
@Config.Name("Disable Bee Damage Armor Bypass")
@Config.Comment("Disables damage caused by bees bypassing player armor")
public boolean utFOBeeDamageArmorBypassToggle = true;

@Config.RequiresMcRestart
@Config.Name("Extra Trees: Gather Windfall")
@Config.Comment("Allows Forestry farms to pick up ExtraTrees fruit")
public boolean utFOGatherWindfallToggle = true;

@Config.RequiresMcRestart
@Config.Name("Replanting Cocoa Beans")
@Config.Comment("Allows Forestry farms to automatically replant cocoa beans")
public boolean utFOCocoaBeansToggle = true;

@Config.RequiresMcRestart
@Config.Name("Duplication Fixes")
@Config.Comment("Fixes various duplication exploits")
public boolean utDuplicationFixesToggle = true;

@Config.Name("Particle Fixes")
@Config.Comment("Fixes broken textures for various running and landing particles")
public boolean utParticleFixesToggle = true;
}

public static class InControlCategory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@ public class UTMixinLoader implements ILateMixinLoader
put("mixins.mods.extrautilities.mutabledrops.json", () -> loaded("extrautils2") && UTConfigMods.EXTRA_UTILITIES.utMutableBlockDrops);
put("mixins.mods.extrautilities.potionlogging.json", () -> loaded("extrautils2") && UTConfigMods.EXTRA_UTILITIES.utDowngradePotionLogging);
put("mixins.mods.extrautilities.radar.json", () -> loaded("extrautils2") && UTConfigMods.EXTRA_UTILITIES.utCatchRadarException);
put("mixins.mods.forestry.cocoa.json", () -> loaded("forestry") && UTConfigMods.FORESTRY.utFOCocoaBeansToggle);
put("mixins.mods.forestry.dupes.json", () -> loaded("forestry") && UTConfigMods.FORESTRY.utDuplicationFixesToggle);
put("mixins.mods.forestry.extratrees.json", () -> loaded("extratrees"));
put("mixins.mods.forestry.json", () -> loaded("forestry"));
put("mixins.mods.incontrol.json", () -> loaded("incontrol") && UTConfigMods.INCONTROL.utStatsFixToggle);
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

7 changes: 0 additions & 7 deletions src/main/resources/mixins.mods.forestry.cocoa.json

This file was deleted.

7 changes: 0 additions & 7 deletions src/main/resources/mixins.mods.forestry.dupes.json

This file was deleted.

2 changes: 1 addition & 1 deletion src/main/resources/mixins.mods.forestry.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"refmap": "universaltweaks.refmap.json",
"minVersion": "0.8",
"compatibilityLevel": "JAVA_8",
"mixins": ["UTBaseBlockMixin", "UTForestryDamageSourceMixin", "UTModuleArboricultureMixin"]
"mixins": ["UTModuleArboricultureMixin"]
}

0 comments on commit 8e82bdf

Please sign in to comment.