Skip to content

Commit

Permalink
Fixed the other crash issue that had to do with a change in a recent …
Browse files Browse the repository at this point in the history
…version of Ars I missed.
  • Loading branch information
sdavisatx97 committed Oct 11, 2021
1 parent 8a1398f commit fce6bed
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 18 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ apply plugin: 'eclipse'
apply plugin: 'maven-publish'
apply plugin: "com.wynprice.cursemaven"
//apply plugin: 'org.spongepowered.mixin'
version = '1.16.5-1.2'
version = '1.16.5-1.2.2'
group = 'com.minttea.minecraft' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'tomeofblood'

Expand Down Expand Up @@ -143,8 +143,8 @@ dependencies {
runtimeOnly fg.deobf("curse.maven:nbtedit:3062106")
compileOnly fg.deobf("curse.maven:patchouli:3126931")
runtimeOnly fg.deobf("curse.maven:patchouli:3126931")
compileOnly fg.deobf("curse.maven:ars-noveau:3442387")
runtimeOnly fg.deobf("curse.maven:ars-noveau:3442387")
compileOnly fg.deobf("curse.maven:ars-noveau:3468666")
runtimeOnly fg.deobf("curse.maven:ars-noveau:3468666")
compileOnly fg.deobf("curse.maven:blood-magic:3399440")
runtimeOnly fg.deobf("curse.maven:blood-magic:3399440")
compileOnly fg.deobf("curse.maven:jei:3280391")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import net.minecraft.util.Util;
import net.minecraft.util.text.ITextComponent;
import net.minecraft.util.text.StringTextComponent;

import net.minecraft.util.text.TranslationTextComponent;
import wayoftime.bloodmagic.core.data.SoulNetwork;
import wayoftime.bloodmagic.core.data.SoulTicket;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public ActionResult<ItemStack> onItemRightClick(World worldIn, PlayerEntity play
EntityRayTraceResult entityRes = MathUtil.getLookedAtEntity(playerIn, 25);

if(entityRes != null && entityRes.getEntity() instanceof LivingEntity){
resolver.onCastOnEntity(stack, playerIn, (LivingEntity) entityRes.getEntity(), handIn);
resolver.onCastOnEntity(stack, playerIn, entityRes.getEntity(), handIn);
return new ActionResult<>(ActionResultType.CONSUME, stack);
}

Expand Down
16 changes: 2 additions & 14 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,24 +63,12 @@ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed mollis lacinia magn
[[dependencies.tomeofblood]]
modId="ars_nouveau"
mandatory=true
versionRange="[1.13,)"
versionRange="[1.23,)"
ordering="AFTER"
side="BOTH"
[[dependencies.tomeofblood]]
modId="bloodmagic"
mandatory=false
mandatory=true
versionRange="[1.16.3-3.0,)"
ordering="AFTER"
side="BOTH"
[[dependencies.tomeofblood]]
modId="occultism"
mandatory=false
versionRange="[1.16.5-1.0,)"
ordering="AFTER"
side="BOTH"
[[dependencies.tomeofblood]]
modId="eidolon"
mandatory=false
versionRange="[0.2,)"
ordering="AFTER"
side="BOTH"

0 comments on commit fce6bed

Please sign in to comment.