Aura.Channel.World.Inventory.BankInventory.InitAdd C# (CSharp) Method

InitAdd() public method

Adds item to tab without any checks (only use for initialization).
public InitAdd ( string tabName, Item item ) : bool
tabName string
item Item
return bool
		public bool InitAdd(string tabName, Item item)
		{
			if (!this.Tabs.ContainsKey(tabName))
				return false;

			this.Tabs[tabName].AddUnsafe(item);

			return true;
		}