|
From: <you...@us...> - 2003-11-13 00:41:09
|
Update of /cvsroot/timewarp/source/melee In directory sc8-pr-cvs1:/tmp/cvs-serv17197/source/melee Modified Files: mship.cpp Log Message: in fleet editor, made the remainder of checkboxes update the available ships Index: mship.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mship.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** mship.cpp 12 Nov 2003 22:55:08 -0000 1.15 --- mship.cpp 13 Nov 2003 00:41:05 -0000 1.16 *************** *** 138,142 **** if (strcmp(origname, "SC3") == 0) ori = SHIP_ORIGIN_SC3; ! if (strcmp(origname, "TWa") == 0) // alpha ships ori = SHIP_ORIGIN_TW_ALPHA; if (strcmp(origname, "TWb") == 0) // beta ships --- 138,143 ---- if (strcmp(origname, "SC3") == 0) ori = SHIP_ORIGIN_SC3; ! if ( (strcmp(origname, "TWa") == 0) || // alpha ships ! (strcmp(origname, "TW") == 0) ) ori = SHIP_ORIGIN_TW_ALPHA; if (strcmp(origname, "TWb") == 0) // beta ships |