Change how gpNpcFuncTable is done
The '&'s are pointless
This commit is contained in:
parent
8056f42e9c
commit
ce34eea2dc
1 changed files with 9 additions and 9 deletions
|
@ -56,13 +56,13 @@ void ReleaseNpcTable()
|
||||||
//Npc function table
|
//Npc function table
|
||||||
NPCFUNCTION gpNpcFuncTbl[] =
|
NPCFUNCTION gpNpcFuncTbl[] =
|
||||||
{
|
{
|
||||||
&ActNpc000,
|
ActNpc000,
|
||||||
&ActNpc001,
|
ActNpc001,
|
||||||
&ActNpc002,
|
ActNpc002,
|
||||||
&ActNpc003,
|
ActNpc003,
|
||||||
&ActNpc004,
|
ActNpc004,
|
||||||
&ActNpc005,
|
ActNpc005,
|
||||||
&ActNpc006,
|
ActNpc006,
|
||||||
nullptr,
|
nullptr,
|
||||||
nullptr,
|
nullptr,
|
||||||
nullptr,
|
nullptr,
|
||||||
|
@ -72,8 +72,8 @@ NPCFUNCTION gpNpcFuncTbl[] =
|
||||||
nullptr,
|
nullptr,
|
||||||
nullptr,
|
nullptr,
|
||||||
nullptr,
|
nullptr,
|
||||||
&ActNpc016,
|
ActNpc016,
|
||||||
&ActNpc017,
|
ActNpc017,
|
||||||
nullptr,
|
nullptr,
|
||||||
nullptr,
|
nullptr,
|
||||||
nullptr,
|
nullptr,
|
||||||
|
|
Loading…
Add table
Reference in a new issue