fix: Fixes poison charge OPL (#1068)
This commit is contained in:
parent
057cf87e60
commit
4a057bf5ac
6 changed files with 7 additions and 7 deletions
|
|
@ -2865,7 +2865,7 @@ namespace Server.Items
|
|||
|
||||
if (m_Poison != null && m_PoisonCharges > 0)
|
||||
{
|
||||
list.Add(1062412 + m_Poison.Level, m_PoisonCharges.ToString());
|
||||
list.Add(1062412 + m_Poison.Level, m_PoisonCharges);
|
||||
}
|
||||
|
||||
if (m_Slayer != SlayerName.None)
|
||||
|
|
@ -3054,7 +3054,7 @@ namespace Server.Items
|
|||
|
||||
if ((prop = WeaponAttributes.MageWeapon) != 0)
|
||||
{
|
||||
list.Add(1060438, (30 - prop).ToString()); // mage weapon -~1_val~ skill
|
||||
list.Add(1060438, 30 - prop); // mage weapon -~1_val~ skill
|
||||
}
|
||||
|
||||
if ((prop = Attributes.BonusMana) != 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue