fix: Fixes the chance of an effect for champion gold (#1236)

This commit is contained in:
Kamron Batman 2022-11-10 02:12:36 -08:00 • committed by GitHub
parent 8e01db8555
commit dc6a70fedd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -318,7 +318,7 @@ namespace Server.Mobiles
g.MoveToWorld(new Point3D(m_X, m_Y, z), m_Map); g.MoveToWorld(new Point3D(m_X, m_Y, z), m_Map);
if (Utility.RandomDouble() < 0.95) if (Utility.RandomDouble() < 0.05)
{ {
return; return;
} }

View file

@ -650,7 +650,7 @@ namespace Server.Mobiles
g.MoveToWorld(new Point3D(m_X, m_Y, z), m_Map); g.MoveToWorld(new Point3D(m_X, m_Y, z), m_Map);
if (Utility.RandomDouble() < 0.95) if (Utility.RandomDouble() < 0.05)
{ {
return; return;
} }