From 3e69a7430536c8180856d5891b7194d9e3d1c7dd Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Mon, 7 Jun 2021 19:41:10 +0300 Subject: [PATCH 32/32] Correct spaceship_init() function header It used to imply that capital-capture cancellation of spaceship is not implemented. See osdn #42460 Signed-off-by: Marko Lindqvist --- common/spaceship.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/common/spaceship.c b/common/spaceship.c index c82611a9b6..5fc9909142 100644 --- a/common/spaceship.c +++ b/common/spaceship.c @@ -15,7 +15,8 @@ #include #endif -#include "shared.h" /* TRUE, FALSE */ +/* utility */ +#include "shared.h" /* TRUE, FALSE */ #include "spaceship.h" @@ -89,8 +90,8 @@ const struct sship_part_info modules_info[NUM_SS_MODULES] = { }; /********************************************************************** -Initialize spaceship struct; could also be used to "cancel" a -spaceship (eg, if/when capital-capture effect implemented). +Initialize spaceship struct; can also be used to "cancel" a +spaceship (eg, when capital captured). **********************************************************************/ void spaceship_init(struct player_spaceship *ship) { -- 2.30.2