From b585f74447b173297875edd2d2c5e5d082536e53 Mon Sep 17 00:00:00 2001 From: Sveinung Kvilhaugsvik Date: Mon, 22 Feb 2021 01:00:44 +0100 Subject: [PATCH] Casus Belli for regular move. Make the Casus_Belli_Success effect support "Unit Move", "Unit Move 2" and "Unit Move 3" Requested by Lexxie L See osdn #41627 --- server/unithand.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/unithand.c b/server/unithand.c index 71a5ff320d..85b520fe41 100644 --- a/server/unithand.c +++ b/server/unithand.c @@ -4864,6 +4864,10 @@ static bool unit_do_regular_move(struct player *actor_player, /* Don't override "Enter Hut" */ FALSE); + /* May cause an incident */ + action_consequence_success(paction, actor_player, tile_owner(target_tile), + target_tile, tile_link(target_tile)); + return TRUE; } -- 2.20.1