Skip to content

Commit

Permalink
Fix crash from knackered AT
Browse files Browse the repository at this point in the history
  • Loading branch information
alcatrazEscapee committed Jun 30, 2019
1 parent 32330c5 commit f983005
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -43,7 +43,7 @@ apply plugin: "net.minecraftforge.gradle.forge"
* The version number is a sacret tool that a computer must understand and be able to compare to see what's what.
* `-SNAPSHOT` or `.rc0v14s4dffds2` communicates nothing useful.
*/
version = "0.8.0" // To be clear, you can edit this if you are submitting a patch PR, or if you are merging a feature into master.
version = "0.8.1" // To be clear, you can edit this if you are submitting a patch PR, or if you are merging a feature into master.
if (System.getenv().BUILD_NUMBER != null) version += "." + System.getenv().BUILD_NUMBER

group = "net.dries007.tfc" // According to java standards, as I have control over this domain. If you fork this and release your own version, change this.
Expand Down
3 changes: 1 addition & 2 deletions src/main/resources/tfc_at.cfg
Expand Up @@ -4,6 +4,5 @@ protected net.minecraft.tileentity.TileEntityChest func_174912_b(Lnet/minecraft/
public net.minecraft.world.biome.Biome field_76791_y # biomeName, the getter is client side only and we need it.
public net.minecraft.world.gen.structure.template.Template field_186270_a # blocks, used by tree generators that use structure blocks to allow a more specific placement method
public net.minecraft.util.FoodStats field_75126_c # foodExhaustionLevel, used by thirst bar to depletes water level faster
public net.minecraft.entity.sourcePlayer.EntityPlayer field_71100_bB # foodStats, replaced with our own handler
public net.minecraft.entity.EntityLivingBase func_70655_b(Lnet/minecraft/util/DamageSource;F)F # applyArmorCalculations, need for custom damage calculations involving armor
public net.minecraft.entity.player.EntityPlayer field_71100_bB # foodStats, since we replace it

0 comments on commit f983005

Please sign in to comment.