Aura.Channel.World.Entities.Creature.RemoveItem C# (CSharp) Method

RemoveItem() public method

Removes items with the given id from the creature's inventory.
public RemoveItem ( int itemId, int amount = 1 ) : void
itemId int
amount int
return void
		public void RemoveItem(int itemId, int amount = 1)
		{
			this.Inventory.Remove(itemId, amount);
		}