From a1e590edeb33e919c4540caa02da40692a94c105 Mon Sep 17 00:00:00 2001 From: xavier Date: Sun, 21 Aug 2011 00:11:37 +0000 Subject: [PATCH] --- Scripts/Mobiles/Monsters/ML/Animal/CuSidhe.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Scripts/Mobiles/Monsters/ML/Animal/CuSidhe.cs b/Scripts/Mobiles/Monsters/ML/Animal/CuSidhe.cs index a855b2271..10aa32fb9 100644 --- a/Scripts/Mobiles/Monsters/ML/Animal/CuSidhe.cs +++ b/Scripts/Mobiles/Monsters/ML/Animal/CuSidhe.cs @@ -18,10 +18,12 @@ namespace Server.Mobiles { double chance = Utility.RandomDouble() * 23301; + int[] list = new int[] { 0x97A, 0x978, 0x901, 0x8AC, 0x5A7, 0x527 }; + if ( chance <= 1 ) Hue = 0x489; else if ( chance < 50 ) - Hue = Utility.RandomList( 0x657, 0x515, 0x4B1, 0x481, 0x480, 0x455 ); + Hue = Utility.RandomList( 0x657, 0x515, 0x4B1, 0x481, 0x482, 0x455 ); else if ( chance < 500 ) Hue = Utility.RandomList( 0x97A, 0x978, 0x901, 0x8AC, 0x5A7, 0x527 );