From a597e977083b40252ffeb9016c562ff2c6030eb6 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sun, 16 Dec 2018 16:36:09 +0100 Subject: [PATCH] Someone was casting leaveastral with more than 32 arguments recently. --- src/magic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/magic.c b/src/magic.c index f0d6e66f6..a71641c6d 100644 --- a/src/magic.c +++ b/src/magic.c @@ -2517,7 +2517,7 @@ static bool is_moving_ship(ship * sh) return false; } -#define MAX_PARAMETERS 32 +#define MAX_PARAMETERS 48 static castorder *cast_cmd(unit * u, order * ord) { char token[128];