]> git.pond.sub.org Git - empserver/blobdiff - src/lib/subs/lostsub.c
Update copyright notice
[empserver] / src / lib / subs / lostsub.c
index b250543830e36b34be73406e7c59e073ef4a6c95..4af3cad645cf4e6185147a4ffeaca999721090b8 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2016, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2017, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                Ken Stevens, Steve McClure, Markus Armbruster
  *
  *  Empire is free software: you can redistribute it and/or modify
@@ -33,7 +33,6 @@
 
 #include <config.h>
 
-#include "file.h"
 #include "lost.h"
 #include "misc.h"
 #include "optlist.h"
@@ -110,7 +109,7 @@ findlost(int type, natid owner, int id, coord x, coord y, int free)
        if (lost.lost_owner == owner && type == lost.lost_type) {
            if (type == EF_SECTOR && lost.lost_x == x && lost.lost_y == y)
                return n;
-           else if (lost.lost_id == id)
+           if (type != EF_SECTOR && lost.lost_id == id)
                return n;
        }
     }