From b982a92d9ef894ab6e16529036112ab2ed0e14ae Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sun, 24 Jan 2010 01:34:34 +0000 Subject: [PATCH] it is not necessary to store cabins, because they are fixed. --- src/common/gamecode/creport.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/common/gamecode/creport.c b/src/common/gamecode/creport.c index 4dd51e5d6..5508be14e 100644 --- a/src/common/gamecode/creport.c +++ b/src/common/gamecode/creport.c @@ -615,9 +615,6 @@ cr_output_ship(FILE * F, const ship * sh, const unit * u, int fcaptain, const fa fprintf(F, "%d;capacity\n", mweight); fprintf(F, "%d;cargo\n", n); - if (sh->type->cabins) { - fprintf(F, "%d;cabins\n", sh->type->cabins); - } fprintf(F, "%d;speed\n", shipspeed(sh, u)); } /* shore */