|
||
|
|||||||
| Other Cant find a category above, use this one! Core mods not listed above go here! |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Forum Expert
Join Date: Sep 2004
Age: 37
Posts: 1,006
|
There's an XML comment in Items.cs that is malformed, line 1106, svn 187. the ampersand character (&) can't be used in XML.
original: Code:
/// <summary>
/// Overridable. Adds the "Locked Down & Secure" property to the given <see cref="ObjectPropertyList" />.
/// </summary>
public virtual void AddSecureProperty( ObjectPropertyList list )
{
list.Add( 501644 ); // locked down & secure
}
Code:
/// <summary>
/// Overridable. Adds the "Locked Down & Secure" property to the given <see cref="ObjectPropertyList" />.
/// </summary>
public virtual void AddSecureProperty( ObjectPropertyList list )
{
list.Add( 501644 ); // locked down & secure
}
Last edited by Ohms_Law; 06-30-2007 at 05:35 PM. Reason: oops, forgot the semi-colon |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|