I feel extremely stupid now. I have searched and found nothing like this to change in the Core files. This is the closest thing I have found in the core ClientVersion.cs
m_Revision = int.Parse( fmt[4].ToString() );
if ( fmt.Length >= 6 && Char.IsWhiteSpace( fmt[5] ) )
m_Patch = 0;
else
m_Patch = (fmt[5] - 'a') + 1;
What am I doing wrong? I know it's me. I have never not found exactly what Arte Grodon tells us to do.
|