diff --git a/Server/Items/Container.cs b/Server/Items/Container.cs index 63b011e85..7d3311ddd 100644 --- a/Server/Items/Container.cs +++ b/Server/Items/Container.cs @@ -115,7 +115,7 @@ namespace Server.Items maxWeight = ((Container)Parent).MaxWeight; if ( maxWeight > 0 ) - maxWeight = Math.Max( maxWeight, DefaultMaxWeight ); + maxWeight = Math.Min( maxWeight, DefaultMaxWeight ); } else {