1. Problem with Lesser Healing Wave Mouseover Macro

    Hey, always when i login, the FIRST LHW creates this lua error.
    I dont know how to fix this.
    Any1 got an idea?



  2. You can open the file in a text editor .. <wow folder>/Interface/Addons/oUF_HealComm4/LibHealComm-4.0/LibHealComm-4.0.lua

    Then find

    Code:
    talentData[TidalWaves].spent
    and change it to

    Code:
    (talentData[TidalWaves].spent or 0)
    so the whole line looks like

    Code:
    				spellPower = spellPower * ((spellData[spellName].coeff * 1.88) + (talentData[TidalWaves].spent or 0) * 0.02)

  3. You can open the file in a text editor .. <wow folder>/Interface/Addons/oUF_HealComm4/LibHealComm-4.0/LibHealComm-4.0.lua

    Then find

    Code:
    talentData[TidalWaves].spent
    and change it to

    Code:
    (talentData[TidalWaves].spent or 0)
    so the whole line looks like

    Code:
    				spellPower = spellPower * ((spellData[spellName].coeff * 1.88) + (talentData[TidalWaves].spent or 0) * 0.02)
    THANKS! worked !

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •