RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Hues.cs

Chase.XNA

Sorceror
Hues.cs

the GetHues method should be

Code:
		public static Hue GetHue( int index )
		{
			index &= 0x3FFF;

			if ( index >= 0 && index < 3000 )
				return m_List[index - 1];
			
			return m_List[0];
		}

the change is "return m_List[index - 1];"
 
Top