Skip to content

Commit

Permalink
Remove collision damage tweak
Browse files Browse the repository at this point in the history
Inferior to the designated mod, has various issues with other mods
  • Loading branch information
ACGaming committed Jul 24, 2024
1 parent 6a659db commit 0fdccc3
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 79 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ All changes are toggleable via config files.
* **Growth Size:** Configurable growth height/length for sugar cane, cacti and vines
* **Hardcore Buckets:** Prevents placing of liquid source blocks in the world
* **Hide Personal Effect Particles:** Disables potion effect particles emitting from yourself
* **Horizontal Collision Damage:** Applies horizontal collision damage to the player akin to elytra collision
* **Husk & Stray Spawning:** Lets husks and strays spawn underground like regular zombies and skeletons
* **Improve Barrier Particle Display:** Causes Barrier Particles to always be displayed to players in Creative mode
* **Improve Language Switching Speed:** Improves the speed of switching languages in the Language GUI
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -388,10 +388,6 @@ public static class EntitiesCategory
@Config.Name("Cobweb Slowness")
public final CobwebSlownessCategory COBWEB_SLOWNESS = new CobwebSlownessCategory();

@Config.LangKey("cfg.universaltweaks.tweaks.entities.collisiondamage")
@Config.Name("Collision Damage")
public final CollisionDamageCategory COLLISION_DAMAGE = new CollisionDamageCategory();

@Config.LangKey("cfg.universaltweaks.tweaks.entities.creeperconfetti")
@Config.Name("Creeper Confetti")
public final CreeperConfettiCategory CREEPER_CONFETTI = new CreeperConfettiCategory();
Expand Down Expand Up @@ -731,22 +727,6 @@ public static class CobwebSlownessCategory
public double utCobwebSlownessFactorV = 0.05000000074505806D;
}

public static class CollisionDamageCategory
{
@Config.RequiresMcRestart
@Config.Name("[1] Collision Damage Toggle")
@Config.Comment("Applies horizontal collision damage to the player akin to elytra collision")
public boolean utCollisionDamageToggle = false;

@Config.Name("[2] Damage Factor")
@Config.Comment
({
"The damage factor that gets multiplied with the player speed",
"Vanilla default for elytra damage is 10"
})
public int utCollisionDamageFactor = 10;
}

public static class CreeperConfettiCategory
{
@Config.RequiresMcRestart
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ public class UTLoadingPlugin implements IFMLLoadingPlugin, IEarlyMixinLoader
put("mixins.tweaks.entities.burning.horse.json", () -> UTConfigTweaks.ENTITIES.UNDEAD_HORSES.utBurningUndeadHorsesToggle);
put("mixins.tweaks.entities.burning.mobs.json", () -> UTConfigTweaks.ENTITIES.utBurningBabyZombiesToggle);
put("mixins.tweaks.entities.damage.arrow.json", () -> UTConfigTweaks.ENTITIES.utCriticalArrowDamage != -1);
put("mixins.tweaks.entities.damage.collision.json", () -> UTConfigTweaks.ENTITIES.COLLISION_DAMAGE.utCollisionDamageToggle);
put("mixins.tweaks.entities.damage.falling.json", () -> UTConfigTweaks.ENTITIES.WATER_FALL_DAMAGE.utFallDamageToggle);
put("mixins.tweaks.entities.damage.velocity.json", () -> UTConfigTweaks.ENTITIES.DAMAGE_VELOCITY.utDamageVelocityToggle);
put("mixins.tweaks.entities.despawning.json", () -> UTConfigTweaks.ENTITIES.utMobDespawnToggle);
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ public class UTObsoleteModsHandler
put("cie", () -> UTConfigTweaks.ITEMS.ITEM_ENTITIES.utItemEntitiesToggle);
put("classiccombat", () -> UTConfigTweaks.ITEMS.ATTACK_COOLDOWN.utAttackCooldownToggle);
put("cleardespawn", () -> UTConfigTweaks.ITEMS.ITEM_ENTITIES.utIEClearDespawnToggle);
put("collisiondamage", () -> UTConfigTweaks.ENTITIES.COLLISION_DAMAGE.utCollisionDamageToggle);
put("configurablecane", () -> UTConfigTweaks.BLOCKS.utSugarCaneSize != 3);
put("configurabledespawntimer", () -> UTConfigTweaks.ITEMS.ITEM_ENTITIES.utItemEntitiesToggle);
put("continousmusic", () -> UTConfigTweaks.MISC.utInfiniteMusicToggle);
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/assets/universaltweaks/lang/en_us.lang
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ cfg.universaltweaks.tweaks.entities.attributes=Attributes
cfg.universaltweaks.tweaks.entities.betterburning=Better Burning
cfg.universaltweaks.tweaks.entities.chickenshedding=Chicken Shedding
cfg.universaltweaks.tweaks.entities.cobwebslowness=Cobweb Slowness
cfg.universaltweaks.tweaks.entities.collisiondamage=Collision Damage
cfg.universaltweaks.tweaks.entities.creeperconfetti=Creeper Confetti
cfg.universaltweaks.tweaks.entities.damagevelocity=Damage Velocity
cfg.universaltweaks.tweaks.entities.easybreeding=Easy Breeding
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/assets/universaltweaks/lang/es_mx.lang
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ cfg.universaltweaks.tweaks.blocks.breakablebedrock=Roca madre rompible
cfg.universaltweaks.tweaks.blocks.finitewater=Agua finita
cfg.universaltweaks.tweaks.entities.attributes=Atributos
cfg.universaltweaks.tweaks.entities.betterburning=Mejor quemado
cfg.universaltweaks.tweaks.entities.collisiondamage=Daño por colisión
cfg.universaltweaks.tweaks.entities.damagevelocity=Velocidad de daño
cfg.universaltweaks.tweaks.entities.easybreeding=Reproducción fácil
cfg.universaltweaks.tweaks.entities.nogolems=No Golems
Expand Down

This file was deleted.

0 comments on commit 0fdccc3

Please sign in to comment.