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

AddPhrase() защищенный Метод

Adds phrase to AI.
protected AddPhrase ( string phrase ) : void
phrase string
Результат void
		protected void AddPhrase(string phrase)
		{
			if (this.NPC == null)
				throw new InvalidOperationException("NPC's race has to be set first.");

			if (this.NPC.AI != null)
				this.NPC.AI.Phrases.Add(phrase);
		}