diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-07-10 19:13:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-10 19:13:59 +0300 |
commit | a369f1276f7a3f9f10dc6878d883e4cdd14ee132 (patch) | |
tree | b7dfb5f04b7ebe87549b84e413bf8dc5b72ea59d /src/emap/status.c | |
parent | 6a5474b593cd47964e0999f837c1ac63538992b7 (diff) | |
download | evol-hercules-a369f1276f7a3f9f10dc6878d883e4cdd14ee132.tar.gz evol-hercules-a369f1276f7a3f9f10dc6878d883e4cdd14ee132.tar.bz2 evol-hercules-a369f1276f7a3f9f10dc6878d883e4cdd14ee132.tar.xz evol-hercules-a369f1276f7a3f9f10dc6878d883e4cdd14ee132.zip |
Remove hooking from function status_readdb_scconfig. Now it went to hercules.s20160717s20160713s20160712
Diffstat (limited to 'src/emap/status.c')
-rw-r--r-- | src/emap/status.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/emap/status.c b/src/emap/status.c index f58cbea..f6f0a51 100644 --- a/src/emap/status.c +++ b/src/emap/status.c @@ -246,24 +246,3 @@ int estatus_change_end__post(int retVal, */ return retVal; } - -bool estatus_readdb_scconfig_post(bool retVal, - char* fields[], - int columns __attribute__ ((unused)), - int current __attribute__ ((unused))) -{ - if (retVal == true) - { - char *type = fields[0]; - int val = 0; - script->get_constant(type, &val); - // own field in sc_config.txt - if (status->dbs->sc_conf[val] & 0x100) - { - // allow show this sc always - status->dbs->DisplayType[val] = true; - } - } - - return retVal; -} |