Skip to content

Commit

Permalink
1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
iron431 committed May 7, 2023
1 parent 17b78a9 commit 8bcb1ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ apply plugin: 'org.spongepowered.mixin'
apply plugin: 'org.parchmentmc.librarian.forgegradle'
apply plugin: 'maven-publish'

version = '1.0.7'
version = '1.0.8'
group = 'io.redspace.ironsspellbooks'
archivesBaseName = 'irons_spellbooks'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public void onCast(Level world, LivingEntity entity, PlayerMagicData playerMagic

@Nullable
private LivingEntity findTarget(LivingEntity caster) {
var target = Utils.raycastForEntity(caster.level, caster, 32, true, 0.35f);
var target = Utils.raycastForEntity(caster.level, caster, 64, true, 0.35f);
if (target instanceof EntityHitResult entityHit && entityHit.getEntity() instanceof LivingEntity livingTarget) {
return livingTarget;
} else {
Expand Down

0 comments on commit 8bcb1ff

Please sign in to comment.