Aura.Channel.Scripting.Scripts.NpcScript.RemoveKeyword C# (CSharp) Метод

RemoveKeyword() публичный Метод

Returns true if player has the keyword.
public RemoveKeyword ( string keyword ) : void
keyword string
Результат void
		public void RemoveKeyword(string keyword)
		{
			if (this.HasKeyword(keyword))
				this.Player.Keywords.Remove(keyword);
		}