From dc6a70fedd3fbff6c8bb2a6bc035939cff080e88 Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Thu, 10 Nov 2022 02:12:36 -0800 Subject: [PATCH] fix: Fixes the chance of an effect for champion gold (#1236) --- Projects/UOContent/Mobiles/Special/BaseChampion.cs | 2 +- Projects/UOContent/Mobiles/Special/Harrower.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Projects/UOContent/Mobiles/Special/BaseChampion.cs b/Projects/UOContent/Mobiles/Special/BaseChampion.cs index ac1b1bb33..92359bb84 100644 --- a/Projects/UOContent/Mobiles/Special/BaseChampion.cs +++ b/Projects/UOContent/Mobiles/Special/BaseChampion.cs @@ -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; } diff --git a/Projects/UOContent/Mobiles/Special/Harrower.cs b/Projects/UOContent/Mobiles/Special/Harrower.cs index ef065d74a..547fa6822 100644 --- a/Projects/UOContent/Mobiles/Special/Harrower.cs +++ b/Projects/UOContent/Mobiles/Special/Harrower.cs @@ -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; }