Reddo 5 anni fa
parent
commit
1cbf39121b
1 ha cambiato i file con 0 aggiunte e 1 eliminazioni
  1. 0 1
      app/World/Classes/RandomDungeons/RegionRandom.ts

+ 0 - 1
app/World/Classes/RandomDungeons/RegionRandom.ts

@@ -122,7 +122,6 @@ class RegionRandom extends Region {
                         ) {
                             let chance2 = otherRoom.extraConnectionChance;
                             let chance = (chance1 == 0 || chance2 == 0) ? 0 : Math.max(chance1, chance2);
-                            console.log(chance);
                             if ((RegionRandom.rng() * 100) <= chance) {
                                 room.mapRoom(otherRoom, direction);
                             }