diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-06-20 17:56:01 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-06-20 17:56:01 +0000 |
commit | ef7452b497d24f6f475d214f1244ab589b304c7c (patch) | |
tree | c24bedb42ecf633efada0475417d7f0592d2e1ab /src/map/npc.c | |
parent | 6f700c626efe9253ce77865667d1d5e598daab65 (diff) | |
download | hercules-ef7452b497d24f6f475d214f1244ab589b304c7c.tar.gz hercules-ef7452b497d24f6f475d214f1244ab589b304c7c.tar.bz2 hercules-ef7452b497d24f6f475d214f1244ab589b304c7c.tar.xz hercules-ef7452b497d24f6f475d214f1244ab589b304c7c.zip |
- Instancing System (Thanks to Sirius White who did most of the code, with some of my work to implement client side information, some optimizations and bugfixes). Also thanks to contributions from UEAUP team and Orcao.
- Fixed a bug on areamobuseskill and changed it to make it as Aegis.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13901 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/npc.c')
-rw-r--r-- | src/map/npc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/npc.c b/src/map/npc.c index 97e54a8fe..0d6c9a9a9 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -74,7 +74,7 @@ int npc_get_new_npc_id(void) } static DBMap* ev_db; // const char* event_name -> struct event_data* -static DBMap* npcname_db; // const char* npc_name -> struct npc_data* +DBMap* npcname_db; // const char* npc_name -> struct npc_data* struct event_data { struct npc_data *nd; |