diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-05 22:26:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-05 22:26:23 +0300 |
commit | 924d3b6f300839800b5c5c514f918edd432fc8bb (patch) | |
tree | 64edc13ea53b897664c7593bf7567f3698ddefb0 /src/map/npc.c | |
parent | 6b230a4de27de394dd4e28662cd27070ab91c1f1 (diff) | |
download | plugin-924d3b6f300839800b5c5c514f918edd432fc8bb.tar.gz plugin-924d3b6f300839800b5c5c514f918edd432fc8bb.tar.bz2 plugin-924d3b6f300839800b5c5c514f918edd432fc8bb.tar.xz plugin-924d3b6f300839800b5c5c514f918edd432fc8bb.zip |
Replace struct npc_data to TBL_NPC.
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 c0c29bf..daa1630 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -55,7 +55,7 @@ void enpc_parse_unknown_mapflag(const char *name, char *w3, char *w4, const char int enpc_buysellsel(TBL_PC* sd, int *id, int *type) { - struct npc_data *nd; + TBL_NPC *nd; if (!sd) return 1; |