private isTileWall(pos: RoomPosition): boolean {
        const encodedPos = pos.roomName + ':' + (pos.x + (50 * pos.y));
        this.generateTileCache(pos, encodedPos);

        return this.tileCache[encodedPos] === TILE_WALL;