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

ModifyStress() public method

Modifies how much the other creature is stressing the NPC.
public ModifyStress ( Creature other, int value ) : int
other Creature
value int
return int
		public int ModifyStress(Creature other, int value)
		{
			return this.SetStress(other, this.GetStress(other) + value);
		}