fix: Updates messages with clilocs (#1381)
This commit is contained in:
parent
b8b283c210
commit
e08efad9be
17 changed files with 79 additions and 106 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue