Aura.Channel.World.Entities.NPC.ModifyMemory C# (CSharp) Method

ModifyMemory() public method

Sets how well the NPC remembers the other creature.
public ModifyMemory ( Creature other, int value ) : int
other Creature
value int
return int
		public int ModifyMemory(Creature other, int value)
		{
			return this.SetMemory(other, this.GetMemory(other) + value);
		}