Skip to content

Commit 8bcb1ff

Browse files
committed
1.0.8
1 parent 17b78a9 commit 8bcb1ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ apply plugin: 'org.spongepowered.mixin'
1717
apply plugin: 'org.parchmentmc.librarian.forgegradle'
1818
apply plugin: 'maven-publish'
1919

20-
version = '1.0.7'
20+
version = '1.0.8'
2121
group = 'io.redspace.ironsspellbooks'
2222
archivesBaseName = 'irons_spellbooks'
2323

src/main/java/io/redspace/ironsspellbooks/spells/holy/WispSpell.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public void onCast(Level world, LivingEntity entity, PlayerMagicData playerMagic
9090

9191
@Nullable
9292
private LivingEntity findTarget(LivingEntity caster) {
93-
var target = Utils.raycastForEntity(caster.level, caster, 32, true, 0.35f);
93+
var target = Utils.raycastForEntity(caster.level, caster, 64, true, 0.35f);
9494
if (target instanceof EntityHitResult entityHit && entityHit.getEntity() instanceof LivingEntity livingTarget) {
9595
return livingTarget;
9696
} else {

0 commit comments

Comments
 (0)