Divinity: Original Sin 2

Divinity: Original Sin 2

Custom Damage Types
84개 중 51~60개 표시 중
< 1 ... 4  5  6  7  8  9 >
업데이트: 2021년 10월 3일 오후 11시 22분

  • Possible fix for some non-host users not receiving CDT entries.
  • Fixed some console errors associated with trying to send information to player characters before they are assigned to a player.
  • DEBUG: Added client chat command !CDT_FetchEntries to allow individual clients to request CDT to resend them entries from the server.
  • DEBUG: Added server console command !CDT_SendEntriesToUser [USERID] to allow hosts to send individual users CDT entries.

업데이트: 2021년 10월 2일 오후 9시 00분

  • Reverted resistance recalculation fix since the extender has patched a fix.

업데이트: 2021년 10월 1일 오후 8시 18분

  • Fixed issue where combat point was being erroneously refunded when leaving the respec mirror in certain situations.
  • Fixed issue where Aerotheurge was not properly refunded when using !CDT_ResetMyAbilities chat command.

업데이트: 2021년 10월 1일 오후 1시 57분

  • Implemented a workaround for an extender bug that causes some targets to have their resistances factored as twice their actual amount for certain damage types.

업데이트: 2021년 9월 24일 오후 11시 05분

  • CDT resistances no longer show a decimal value in character sheet tooltips.
  • Fixed error in recalculation process involving critical states.

업데이트: 2021년 9월 23일 오후 10시 37분

  • Added support for forcing a critical state during the CDT damage calculation process. A table of functions must be added to your CDT's Adjustments table, where each function should return true if a critical should be forced, false if a non-critical should be forced, and nil if the default critical state should be used. This table should be empty if your CDT has no such functions.
    Example:
    ---This forces simulated DoT ticks via exploding projectiles to never crit. ---@param status EsvStatus ---@param context HitContext ---@param cdt CDTObject ---@return boolean|nil local function NoCritAdjustment(status, context, cdt) local hitSkill = CDT.CDT_FormatSkill(status.SkillId) for i, skill in pairs(SimulatedDoTs) do if hitSkill == skill then return false end end end MyCDT.DamageType.Adjustments.Critical = {NoCritAdjustment}

업데이트: 2021년 9월 23일 오후 4시 40분

  • Skill School icons for skills and skillbooks are now more aggressively positioned. Hopefully this fixes an issue where the icon was very far to left (I can't replicate this <_>)

업데이트: 2021년 9월 23일 오전 7시 58분

  • Skillbooks of CDT skills will now display the scaling property if applicable.

업데이트: 2021년 9월 22일 오후 10시 38분

  • Fixed CDT abilities and resistance from showing up on unidentified items.
  • Fixed character's max met ability requirements not updating when changing gear.

업데이트: 2021년 9월 22일 오전 11시 57분

  • Possible fix for some clients' CDT skill tooltips not being constructed properly.