diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-01-23 23:13:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-01-23 23:46:48 +0300 |
commit | 5a8d6081f975536713974eccd0ed2371c8909495 (patch) | |
tree | 8bcdc0bac7b815156a4af16ec5a3a7da731e21ce /src/emap/craftconf.c | |
parent | 44c32f2268b64fc44b4b5553efaf07021e6faea9 (diff) | |
download | evol-hercules-5a8d6081f975536713974eccd0ed2371c8909495.tar.gz evol-hercules-5a8d6081f975536713974eccd0ed2371c8909495.tar.bz2 evol-hercules-5a8d6081f975536713974eccd0ed2371c8909495.tar.xz evol-hercules-5a8d6081f975536713974eccd0ed2371c8909495.zip |
Add script function for find craft entry from db based on craft variable.
New script command: findcraftentry CRAFTVAR, FLAG
Where:
CRAFTVAR - variable get from initcraft function.
FLAG - flag related to npc. It allow search craft entries only with this flag.
Diffstat (limited to 'src/emap/craftconf.c')
-rw-r--r-- | src/emap/craftconf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emap/craftconf.c b/src/emap/craftconf.c index 7705570..62f3230 100644 --- a/src/emap/craftconf.c +++ b/src/emap/craftconf.c @@ -272,6 +272,7 @@ static bool craft_read_db_sub(config_setting_t *craftt, int id, const char *sour } struct craft_db_entry *entry = craft_create_db_entry(class_); + entry->id = class_; idb_put(craftconf_db, class_, entry); safestrncpy(entry->name, str, sizeof(entry->name)); |