diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-10 15:31:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-10 15:31:36 +0300 |
commit | c757bf80478dd5e4e40a6c24b436954ab498a855 (patch) | |
tree | 8b73b31f6ca857d3a7affb86e324990b70baf68a /src/actions | |
parent | a7524c70c71cbdaed7e541105d9c743fb18f56cf (diff) | |
download | plus-c757bf80478dd5e4e40a6c24b436954ab498a855.tar.gz plus-c757bf80478dd5e4e40a6c24b436954ab498a855.tar.bz2 plus-c757bf80478dd5e4e40a6c24b436954ab498a855.tar.xz plus-c757bf80478dd5e4e40a6c24b436954ab498a855.zip |
Fix code style.
Diffstat (limited to 'src/actions')
-rw-r--r-- | src/actions/commands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index 5a48db7a9..1f7f77157 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -659,7 +659,7 @@ impHandler(debugSpawn) for (int x = -half; x < cnt - half; x ++) { for (int y = -half; y < cnt - half; y ++) - actorManager->cloneBeing(localPlayer, x, y, cnt); + ActorManager::cloneBeing(localPlayer, x, y, cnt); } return true; } |