diff options
Diffstat (limited to 'src/actions/commands.cpp')
-rw-r--r-- | src/actions/commands.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index 103248aa8..797c75edb 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -262,4 +262,14 @@ impHandler0(present) return false; } +impHandler0(printAll) +{ + if (actorManager) + { + actorManager->printAllToChat(); + return true; + } + return false; +} + } // namespace Actions |