diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-10-08 23:40:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-10-08 23:59:11 +0300 |
commit | de997e62656c4a60e069b4fedf5b1b96882c7931 (patch) | |
tree | c8bba8498bc8a9f86448bbb69de2cba902c747ef /src/actions | |
parent | 6f0554d8c81752ec8f0e3b9822bdeb590cbdfafb (diff) | |
download | plus-de997e62656c4a60e069b4fedf5b1b96882c7931.tar.gz plus-de997e62656c4a60e069b4fedf5b1b96882c7931.tar.bz2 plus-de997e62656c4a60e069b4fedf5b1b96882c7931.tar.xz plus-de997e62656c4a60e069b4fedf5b1b96882c7931.zip |
Add chat command /testinfo for output some debug parameters to log.
Diffstat (limited to 'src/actions')
-rw-r--r-- | src/actions/actions.cpp | 11 | ||||
-rw-r--r-- | src/actions/actions.h | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index 4655c9833..288c866f0 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -1640,4 +1640,15 @@ impHandler0(clearDrop) return true; } +impHandler0(testInfo) +{ + if (actorManager) + { + logger->log("actors count: %d", static_cast<int>( + actorManager->size())); + return true; + } + return false; +} + } // namespace Actions diff --git a/src/actions/actions.h b/src/actions/actions.h index f2407f936..c26ef3af8 100644 --- a/src/actions/actions.h +++ b/src/actions/actions.h @@ -108,6 +108,7 @@ namespace Actions decHandler(unprotectItem); decHandler(kick); decHandler(clearDrop); + decHandler(testInfo); } // namespace Actions #undef decHandler |