TModLoader v1.4.4.9
TModLoader source code documentation
Loading...
Searching...
No Matches

◆ PreAI()

virtual bool Terraria.ModLoader.ModNPC.PreAI ( )
inlinevirtual

Allows you to determine how this NPC behaves. Return false to stop the vanilla AI and the AI hook from being run. Returns true by default.

Returns

Definition at line 240 of file ModNPC.cs.

241 {
242 return true;
243 }