Jump to content

Willow cannot repeat her spells although it's meant to be the case right ?


ADM
  • Fixed

If there is one great thing about Maxwell it's that he is capable of repeating certain spells back to back if he has the sanity instead of :

  • Re-opening the spell wheel
  • Selecting the spell
  • Taking aim...
  • Then finally cast !

Although this is only the case for Duelists and Servants. The Prison and Sneak don't make use of this, just saying, but if there's a much more critical thing I have noticed is that Willow SHOULD have been able to repeat all of her spells that way instead of having to repeat the pattern.

Spoiler
local function CheckStackSize(inst, doer, spell)
    return doer.replica.inventory ~= nil and doer.replica.inventory:Has(inst.prefab, SPELLCOSTS[spell])
end

local function ShouldRepeatFireThrow(inst, doer)
    return CheckStackSize(inst, doer, "firethrow")
end

local function ShouldRepeatFireBurst(inst, doer)
    return CheckStackSize(inst, doer, "fireburst")
end

local function ShouldRepeatFireBall(inst, doer)
    return CheckStackSize(inst, doer, "fireball")
end

local function ShouldRepeatFireFrenzy(inst, doer)
    return CheckStackSize(inst, doer, "firefrenzy")
end

local function ShouldRepeatShadowFire(inst, doer)
    return CheckStackSize(inst, doer, "shadowfire")
end

local function ShouldRepeatLunarFire(inst, doer)
    return CheckStackSize(inst, doer, "lunarfire")
end

 

The functions are all in place even for the spells with cooldowns, surely this won't work for them, but aren't Flame Cast, Fireball and Combustion meant to be repeated as long we have the Ember available in the inventory ? This just isn't working for some reason, I didn't look up why but this would definitively be better.


Steps to Reproduce

Cast a spell with willow, the spell won't allow to be repeated despite having the ember for another cast




User Feedback


A developer has marked this issue as fixed. This means that the issue has been addressed in the current development build and will likely be in the next update.


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
  • Create New...