fix: Fixes the chance of an effect for champion gold (#1236)
This commit is contained in:
parent
8e01db8555
commit
dc6a70fedd
2 changed files with 2 additions and 2 deletions
|
|
@ -318,7 +318,7 @@ namespace Server.Mobiles
|
|||
|
||||
g.MoveToWorld(new Point3D(m_X, m_Y, z), m_Map);
|
||||
|
||||
if (Utility.RandomDouble() < 0.95)
|
||||
if (Utility.RandomDouble() < 0.05)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -650,7 +650,7 @@ namespace Server.Mobiles
|
|||
|
||||
g.MoveToWorld(new Point3D(m_X, m_Y, z), m_Map);
|
||||
|
||||
if (Utility.RandomDouble() < 0.95)
|
||||
if (Utility.RandomDouble() < 0.05)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue