summaryrefslogtreecommitdiff
path: root/src/game/game_instance.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/game_instance.cpp')
-rw-r--r--src/game/game_instance.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/game/game_instance.cpp b/src/game/game_instance.cpp
index fa44ee97c..09bba1334 100644
--- a/src/game/game_instance.cpp
+++ b/src/game/game_instance.cpp
@@ -13,6 +13,7 @@
#include "../script/squirrel_class.hpp"
#include "../script/script_storage.hpp"
+#include "../script/script_cmd.h"
#include "../ai/ai_gui.hpp"
#include "game_config.hpp"
#include "game_info.hpp"
@@ -85,10 +86,11 @@ void GameInstance::Died()
* @param result The result of the command.
* @param tile The tile on which the command was executed.
* @param data Command data as given to Command<>::Post.
+ * @param result_data Additional returned data from the command.
*/
-void CcGame(Commands cmd, const CommandCost &result, TileIndex tile, const CommandDataBuffer &data)
+void CcGame(Commands cmd, const CommandCost &result, TileIndex tile, const CommandDataBuffer &data, CommandDataBuffer result_data)
{
- if (Game::GetGameInstance()->DoCommandCallback(result, tile, data, cmd)) {
+ if (Game::GetGameInstance()->DoCommandCallback(result, tile, data, std::move(result_data), cmd)) {
Game::GetGameInstance()->Continue();
}
}