summaryrefslogtreecommitdiff
path: root/src/script/script_storage.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/script/script_storage.hpp')
-rw-r--r--src/script/script_storage.hpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/script/script_storage.hpp b/src/script/script_storage.hpp
index 8dadf59ae..3735adc1d 100644
--- a/src/script/script_storage.hpp
+++ b/src/script/script_storage.hpp
@@ -45,8 +45,7 @@ private:
bool last_command_res; ///< The last result of the command.
TileIndex last_tile; ///< The last tile passed to a command.
- uint32 last_p1; ///< The last p1 passed to a command.
- uint32 last_p2; ///< The last p2 passed to a command.
+ CommandDataBuffer last_data; ///< The last data passed to a command.
Commands last_cmd; ///< The last cmd passed to a command.
VehicleID new_vehicle_id; ///< The ID of the new Vehicle.
@@ -77,8 +76,6 @@ public:
last_error (STR_NULL),
last_command_res (true),
last_tile (INVALID_TILE),
- last_p1 (0),
- last_p2 (0),
last_cmd (CMD_END),
new_vehicle_id (0),
new_sign_id (0),