]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/drop.c
(drop, fly): Fix previous rev. not to prohibit flying civilians to an
[empserver] / src / lib / commands / drop.c
index f91567cb3f52e755893722f48b5e48d63e2f50ac..08d505a3a2b55893073255e239d038c7c8d3da49 100644 (file)
@@ -99,14 +99,9 @@ drop(void)
 
     if (target.sct_own == player->cnum
        || getrel(getnatp(target.sct_own), player->cnum) == ALLIED) {
-       if (ip->i_vtype == V_CIVIL) {
-           if (target.sct_own != player->cnum) {
-               pr("Your civilians refuse to emigrate!\n");
-               return RET_FAIL;
-           } else if (target.sct_own != target.sct_oldown) {
-               pr("Can't drop civilians into occupied sectors.\n");
-               return RET_FAIL;
-           }
+       if (ip->i_vtype == V_CIVIL && target.sct_own != target.sct_oldown) {
+           pr("Can't drop civilians into occupied sectors.\n");
+           return RET_FAIL;
        }
     } else {
        /* into the unknown... */