diff --git a/Scripts/Items/Addons/GozaMats.cs b/Scripts/Items/Addons/GozaMats.cs index bd87a29ff..483fbaa73 100644 --- a/Scripts/Items/Addons/GozaMats.cs +++ b/Scripts/Items/Addons/GozaMats.cs @@ -415,7 +415,7 @@ namespace Server.Items } [Constructable] - public BrocadeSquareGozaMatEastAddon() + public BrocadeSquareGozaMatEastAddon( int hue ) { AddComponent( new LocalizedAddonComponent( 0x28AE, 1030688 ), 0, 0, 0 ); Hue = hue; @@ -481,7 +481,7 @@ namespace Server.Items } [Constructable] - public BrocadeSquareGozaMatSouthAddon() + public BrocadeSquareGozaMatSouthAddon( int hue ) { AddComponent( new LocalizedAddonComponent( 0x28AF, 1030688 ), 0, 0, 0 ); Hue = hue; diff --git a/Scripts/Items/Books/BaseBook.cs b/Scripts/Items/Books/BaseBook.cs index b551dd417..451ec1ce1 100644 --- a/Scripts/Items/Books/BaseBook.cs +++ b/Scripts/Items/Books/BaseBook.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.IO; using System.Text; using Server; +using Server.ContextMenus; using Server.Network; using Server.Gumps; using Server.Multis;