From 71532c1597593c8abbfba227a565d5024d43af23 Mon Sep 17 00:00:00 2001 From: Mark Sturgill Date: Sat, 14 Sep 2013 02:12:09 -0700 Subject: [PATCH] fix props gump serial display --- Scripts/Gumps/Properties/PropsGump.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/Gumps/Properties/PropsGump.cs b/Scripts/Gumps/Properties/PropsGump.cs index 58beaf164..fe084586c 100644 --- a/Scripts/Gumps/Properties/PropsGump.cs +++ b/Scripts/Gumps/Properties/PropsGump.cs @@ -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 ) {