diff --git a/Scripts/Items/TreasureChests/TreasureChestLevel4.cs b/Scripts/Items/TreasureChests/TreasureChestLevel4.cs index aeddb71b4..d90776eb1 100644 --- a/Scripts/Items/TreasureChests/TreasureChestLevel4.cs +++ b/Scripts/Items/TreasureChests/TreasureChestLevel4.cs @@ -16,7 +16,7 @@ namespace Server.Items { bool UseFirstItemId = Utility.RandomBool(); - switch( Utility.RandomList( 0, 1, 2 ) ) + switch( Utility.Random( 4 ) ) { case 0:// Wooden Chest this.ItemID = ( UseFirstItemId ? 0xe42 : 0xe43 ); @@ -32,6 +32,11 @@ namespace Server.Items this.ItemID = ( UseFirstItemId ? 0xe40 : 0xe41 ); this.GumpID = 0x42; break; + + case 4:// Keg + this.ItemID = 0xe7f; + this.GumpID = 0x3e; + break; } }