Two extensions on the same tile



  • In the room W12N5, when trying to count how many extensions I have, I got "20" instead of the 19 I could see. To figure out why, I ran this snippet:

    var extensions = overmind.room.find(FIND_MY_STRUCTURES, {filter: { structureType: STRUCTURE_EXTENSION }});
    for (var k in extensions) {
        console.log(finished[k].id, finished[k].pos.x, finished[k].pos.y);
    }
    

    Among all output, I could see this:

    558a36c22248e79e5ac9e9cf 13 31
    558a36c42248e79e5ac9e9f6 13 31
    

    -> It seems the game thinks I have two distinct extensions, with different ids, on tile (13, 31). When I click on the tile I can only see one.



  • Observed the same for extensions, but in my example, you can choose both (and both can be filled with energy. Definetely a bug. But I think it is reported before.



  • I also saw 2 links on the same position. See W12S6 at controller.



  • I also have an issue related. I have an extension with an extesion construction site on the same tile. I have a screenshot of this as well.

    Any suggestions on where, or how to add the image? Is it even worth me providing that?



  • I would like to point out that the defect I observed was resolved with a simple refresh of the page. Obviously not ideal, though might help point to where the issue is occuring