From f283ac33aefe52a3e2954378c7d7ee2bc48e341c Mon Sep 17 00:00:00 2001 From: iron431 <34083081+iron431@users.noreply.github.com> Date: Wed, 4 Oct 2023 10:38:38 -0500 Subject: [PATCH] buff magic arrow damage, changes.md --- LATEST_CHANGES.MD | 7 ++++--- .../ironsspellbooks/spells/ender/MagicArrowSpell.java | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/LATEST_CHANGES.MD b/LATEST_CHANGES.MD index 503874929..d9d0319a0 100644 --- a/LATEST_CHANGES.MD +++ b/LATEST_CHANGES.MD @@ -1,9 +1,10 @@ ### Additions -- Added SpellCastEvent and SpellHealEvent for developers, courtesy of Silvertide7 +- ### Changes -- Significantly Optimized WorldUpgrader by skipping uninhabited chunks +- Buff Magic Arrow's base damage by 5 +- Add CastSource to SpellCastEvent ### Fixes -- Fix Alchemist Cauldron having a null level when spawned in as a structure \ No newline at end of file +- Fix inconsistent Magic Arrow block penetration \ No newline at end of file diff --git a/src/main/java/io/redspace/ironsspellbooks/spells/ender/MagicArrowSpell.java b/src/main/java/io/redspace/ironsspellbooks/spells/ender/MagicArrowSpell.java index 38177669d..5d8c7cc73 100644 --- a/src/main/java/io/redspace/ironsspellbooks/spells/ender/MagicArrowSpell.java +++ b/src/main/java/io/redspace/ironsspellbooks/spells/ender/MagicArrowSpell.java @@ -37,7 +37,7 @@ public List getUniqueInfo(int spellLevel, LivingEntity caster) public MagicArrowSpell() { this.manaCostPerLevel = 5; - this.baseSpellPower = 5; + this.baseSpellPower = 10; this.spellPowerPerLevel = 2; this.castTime = 30; this.baseManaCost = 40;