summaryrefslogtreecommitdiff
path: root/src/commands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands.cpp')
-rw-r--r--src/commands.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/commands.cpp b/src/commands.cpp
index d6183b42b..ac854bc39 100644
--- a/src/commands.cpp
+++ b/src/commands.cpp
@@ -159,20 +159,6 @@ static void uploadFile(const std::string &str,
upload->start();
}
-impHandler0(debugSpawn)
-{
- int cnt = atoi(event.args.c_str());
- if (cnt < 1)
- cnt = 1;
- const int half = cnt / 2;
- for (int x = -half; x < cnt - half; x ++)
- {
- for (int y = -half; y < cnt - half; y ++)
- actorManager->cloneBeing(localPlayer, x, y, cnt);
- }
- return true;
-}
-
void replaceVars(std::string &str)
{
if (!localPlayer || !actorManager)