mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-24 11:28:22 +02:00
renamed mob stuff to battlenpc
- stubbed spawn/die/despawn functions
This commit is contained in:
parent
cc1929a9fb
commit
d895357182
10 changed files with 63 additions and 124 deletions
|
@ -203,11 +203,8 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||
|
||||
// time elapsed since last ai update
|
||||
|
||||
if (aiContainer != null)
|
||||
{
|
||||
this.aiContainer.Update(tick);
|
||||
}
|
||||
|
||||
this.aiContainer?.Update(tick);
|
||||
|
||||
/*
|
||||
var diffTime = (tick - lastAiUpdate);
|
||||
|
||||
|
@ -369,7 +366,21 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||
}
|
||||
*/
|
||||
}
|
||||
|
||||
public virtual void Spawn(DateTime tick)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public virtual void Die(DateTime tick)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
protected virtual void Despawn(DateTime tick)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue