diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-21 17:47:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-23 23:36:18 +0300 |
commit | 4e681ce12a3f9574c33dc1e11ca8665e8f04e8a0 (patch) | |
tree | 2821d43a8b8017c659376a3542fe281795d6d307 /src/map/unit.c | |
parent | 6b949190402e71d5c489f627da79eb5f51669b44 (diff) | |
download | hercules-4e681ce12a3f9574c33dc1e11ca8665e8f04e8a0.tar.gz hercules-4e681ce12a3f9574c33dc1e11ca8665e8f04e8a0.tar.bz2 hercules-4e681ce12a3f9574c33dc1e11ca8665e8f04e8a0.tar.xz hercules-4e681ce12a3f9574c33dc1e11ca8665e8f04e8a0.zip |
Extend official_cell_stack_limit option.
Now if this option is zero server will not count objects before comparing
with official_cell_stack_limit.
If set official_cell_stack_limit to zero it will heavy reduce CPU usage.
Diffstat (limited to 'src/map/unit.c')
-rw-r--r-- | src/map/unit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index 6e4efd533..b8e84492b 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -454,7 +454,7 @@ int unit_walktoxy_timer(int tid, int64 tick, int id, intptr_t data) { ud->to_x = bl->x; ud->to_y = bl->y; - if(map->count_oncell(bl->m, x, y, BL_CHAR|BL_NPC, 1) > battle_config.official_cell_stack_limit) { + if(battle_config.official_cell_stack_limit && map->count_oncell(bl->m, x, y, BL_CHAR|BL_NPC, 1) > battle_config.official_cell_stack_limit) { //Walked on occupied cell, call unit_walktoxy again if(ud->steptimer != INVALID_TIMER) { //Execute step timer on next step instead |