From 91eed1e2edc6b06f302c4785ca1ba3d43fbb6bd7 Mon Sep 17 00:00:00 2001 From: Mark Sturgill Date: Sat, 15 Feb 2014 12:28:27 -0700 Subject: [PATCH] there is no exact localization match for the legacy container label, but this one is pretty close if someone wanted to use it --- Server/Items/Container.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Server/Items/Container.cs b/Server/Items/Container.cs index dda9e06ac..df3578e02 100644 --- a/Server/Items/Container.cs +++ b/Server/Items/Container.cs @@ -1598,7 +1598,8 @@ namespace Server.Items base.OnSingleClick( from ); if ( CheckContentDisplay( from ) ) - LabelTo( from, "({0} items, {1} stones)", TotalItems, TotalWeight ); + LabelTo(from, "({0} items, {1} stones)", TotalItems, TotalWeight); + //LabelTo(from, 1050044, String.Format("{0}\t{1}", TotalItems, TotalWeight)); // ~1_COUNT~ items, ~2_WEIGHT~ stones } private List m_Openers;