diff options
Diffstat (limited to 'src/commands.cpp')
-rw-r--r-- | src/commands.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 7494c45d2..38683ea2a 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -180,25 +180,6 @@ impHandler(imitation) return true; } -impHandler(heal) -{ - if (!actorManager) - return false; - - if (!event.args.empty()) - { - const Being *const being = actorManager->findBeingByName( - event.args, ActorType::PLAYER); - if (being) - actorManager->heal(being); - } - else - { - actorManager->heal(localPlayer); - } - return true; -} - impHandler(hack) { Net::getChatHandler()->sendRaw(event.args); |