Jump to content

Unnecessary Confirmation Prompt when reloading spells in Icewind Dale


Guest Isk

Recommended Posts

In IWD only (not in BG) there is a confirmation prompt when trying to replace a memorized spell with another one. I cannot find any way to disable that prompt. It causes inconvenience when reloading spells.

Link to comment

There is a settings 'More Confirmation Prompts' (under Options/Gameplay/Feedback). The description says 'Prompt before removing memorized spells or resting at inns'.

But it does not work for IWDEE as the UI does not check the state of the option and will always show the prompt when removing memorized spells.

For me it's definitively a bug but I don't know if it's something the EE Fixpack wan't to fix (I have fixed it in my UI mod for IWDEE but it's a full UI overwrite not a fixpack).

 

For information, the code inside UI.menu for IWDEE is this function:

function unmemorizeSpell(spell)
    if(spell.isPlaceholder) then return end
    showMageMemorizationFlash = false
    if(spell.castableCount >= spell.memorizedCount) then
        --Unmemorizing a castable spell.
        popup2Button(11824, 'REMOVE_BUTTON', function() finishUnmemorizeSpell(spell) end)
    else
        finishUnmemorizeSpell(spell)
    end

end

And the fourth line should be change to this to take the option into account.

if(spell.castableCount >= spell.memorizedCount and Infinity_GetOption(41, 9) == 1) then

 

Link to comment

Join the conversation

You are posting as a guest. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...