fix: Updates messages with clilocs (#1381)

This commit is contained in:
Kamron Batman 2023-03-26 00:54:09 -07:00 committed by GitHub
parent b8b283c210
commit e08efad9be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 79 additions and 106 deletions

View file

@ -244,12 +244,14 @@ public class Container : Item
public virtual void SendFullItemsMessage(Mobile to, Item item)
{
to.SendMessage("That container cannot hold more items.");
// That container cannot hold more items.
to.SendLocalizedMessage(1080017);
}
public virtual void SendFullWeightMessage(Mobile to, Item item)
{
to.SendMessage("That container cannot hold more weight.");
// That container cannot hold more weight.
to.SendLocalizedMessage(1080016);
}
public virtual void SendCantStoreMessage(Mobile to, Item item)