fix props gump serial display

This commit is contained in:
Mark Sturgill 2013-09-14 02:12:09 -07:00
parent a5ec9fd519
commit 71532c1597

View file

@ -504,7 +504,7 @@ namespace Server.Gumps
}
else if ( o is Item )
{
return String.Format( "(I) 0x{0:X}", ((Item)o).Serial );
return String.Format( "(I) 0x{0:X}", ((Item)o).Serial.Value );
}
else if ( o is Type )
{
@ -692,7 +692,7 @@ namespace Server.Gumps
}
else if ( o is Item )
{
return String.Format( "(I) 0x{0:X}", ((Item)o).Serial );
return String.Format( "(I) 0x{0:X}", ((Item)o).Serial.Value );
}
else if ( o is Type )
{