Typo fix for Paragon it should be IsParagon

This commit is contained in:
ravenal 2009-10-19 03:30:04 +00:00
parent 5624873cd7
commit 417cf95e0c

View file

@ -23,7 +23,7 @@ namespace Server.Mobiles
[CommandProperty( AccessLevel.GameMaster )]
public int DevourGoal
{
get { return ( this.Paragon ? m_DevourGoal + 25 : m_DevourGoal ); }
get { return ( IsParagon ? m_DevourGoal + 25 : m_DevourGoal ); }
set { m_DevourGoal = value; }
}